ec2_group: prioritise current VPC group names over others
This commit is contained in:
parent
8a4d5856ce
commit
34378b6c6a
1 changed files with 6 additions and 1 deletions
|
@ -223,7 +223,12 @@ def main():
|
|||
groups = {}
|
||||
for curGroup in ec2.get_all_security_groups():
|
||||
groups[curGroup.id] = curGroup
|
||||
groups[curGroup.name] = curGroup
|
||||
if curGroup.name in groups:
|
||||
# Prioritise groups from the current VPC
|
||||
if vpc_id is None or curGroup.vpc_id == vpc_id:
|
||||
groups[curGroup.name] = curGroup
|
||||
else:
|
||||
groups[curGroup.name] = curGroup
|
||||
|
||||
if curGroup.name == name and (vpc_id is None or curGroup.vpc_id == vpc_id):
|
||||
group = curGroup
|
||||
|
|
Loading…
Reference in a new issue