Use the right name for the vpc_id parameter

Fixes #7853
This commit is contained in:
Michael Peters 2014-06-19 17:13:25 -04:00 committed by James Cammarata
parent 32aa948dd0
commit 87a6290065

View file

@ -218,7 +218,7 @@ def find_vpc(module, vpc_conn, vpc_id=None, cidr=None):
if vpc_id == None and cidr == None:
module.fail_json(
msg='You must specify either a vpc id or a cidr block + list of unique tags, aborting'
msg='You must specify either a vpc_id or a cidr block + list of unique tags, aborting'
)
found_vpcs = []
@ -262,7 +262,7 @@ def create_vpc(module, vpc_conn):
about the VPC and subnets that were launched
"""
id = module.params.get('id')
id = module.params.get('vpc_id')
cidr_block = module.params.get('cidr_block')
instance_tenancy = module.params.get('instance_tenancy')
dns_support = module.params.get('dns_support')