Initialize the value of vpc_id variable

This commit is contained in:
Toshio Kuratomi 2015-03-11 18:39:24 -07:00 committed by Matt Clay
parent 00613cd4f3
commit c9cc8d0b70

View file

@ -783,6 +783,7 @@ def create_instances(module, ec2, vpc, override_count=None):
module.fail_json(msg = str("Use only one type of parameter (group_name) or (group_id)"))
sys.exit(1)
vpc_id = None
if vpc_subnet_id:
vpc_id = vpc.get_all_subnets(subnet_ids=[vpc_subnet_id])[0].vpc_id
else: