Properly match existing security group

If we don't care about `vpc_id` then neither should the code.
reviewable/pr18780/r1
Patryk Zawadzki 11 years ago
parent 1b2a71209a
commit f7125fdf37

@ -146,7 +146,7 @@ def main():
groups[curGroup.id] = curGroup
groups[curGroup.name] = curGroup
if curGroup.name == name and curGroup.vpc_id == vpc_id:
if curGroup.name == name and (vpc_id is None or curGroup.vpc_id == vpc_id):
group = curGroup
# Ensure requested group is absent

Loading…
Cancel
Save