Enforcing ELB security groups must be real
This commit is contained in:
parent
b512316c82
commit
6ed8d12317
5 changed files with 79 additions and 13 deletions
|
|
@ -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.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue