ec2_group: prioritise current VPC group names over others
This commit is contained in:
parent
c3e720a393
commit
933256fc63
1 changed files with 6 additions and 1 deletions
|
@ -223,7 +223,12 @@ def main():
|
||||||
groups = {}
|
groups = {}
|
||||||
for curGroup in ec2.get_all_security_groups():
|
for curGroup in ec2.get_all_security_groups():
|
||||||
groups[curGroup.id] = curGroup
|
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):
|
if curGroup.name == name and (vpc_id is None or curGroup.vpc_id == vpc_id):
|
||||||
group = curGroup
|
group = curGroup
|
||||||
|
|
Loading…
Reference in a new issue