Commit 87a62900 by Michael Peters Committed by James Cammarata

Use the right name for the vpc_id parameter

Fixes #7853
parent 32aa948d
......@@ -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')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment