Enforcing ELB security groups must be real

This commit is contained in:
Jack Danger 2017-07-19 15:58:49 -07:00
commit 6ed8d12317
5 changed files with 79 additions and 13 deletions

View file

@ -64,3 +64,11 @@ class EmptyListenersError(ELBClientError):
super(EmptyListenersError, self).__init__(
"ValidationError",
"Listeners cannot be empty")
class InvalidSecurityGroupError(ELBClientError):
def __init__(self):
super(InvalidSecurityGroupError, self).__init__(
"ValidationError",
"One or more of the specified security groups do not exist.")