mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 07:01:22 -07:00
Make sure subnets and route_tables are initialized before using
Fixes #7712
This commit is contained in:
parent
67e56853d3
commit
0ee28c1a0e
1 changed files with 8 additions and 3 deletions
|
@ -274,6 +274,11 @@ def create_vpc(module, vpc_conn):
|
||||||
wait_timeout = int(module.params.get('wait_timeout'))
|
wait_timeout = int(module.params.get('wait_timeout'))
|
||||||
changed = False
|
changed = False
|
||||||
|
|
||||||
|
if subnets is None:
|
||||||
|
subnets = []
|
||||||
|
if route_tables is None:
|
||||||
|
route_tables = []
|
||||||
|
|
||||||
# Check for existing VPC by cidr_block + tags or id
|
# Check for existing VPC by cidr_block + tags or id
|
||||||
previous_vpc = find_vpc(module, vpc_conn, id, cidr_block)
|
previous_vpc = find_vpc(module, vpc_conn, id, cidr_block)
|
||||||
|
|
||||||
|
@ -561,11 +566,11 @@ def main():
|
||||||
wait_timeout = dict(default=300),
|
wait_timeout = dict(default=300),
|
||||||
dns_support = dict(type='bool', default=True),
|
dns_support = dict(type='bool', default=True),
|
||||||
dns_hostnames = dict(type='bool', default=True),
|
dns_hostnames = dict(type='bool', default=True),
|
||||||
subnets = dict(type='list'),
|
subnets = dict(type='list', default=[]),
|
||||||
vpc_id = dict(),
|
vpc_id = dict(),
|
||||||
internet_gateway = dict(type='bool', default=False),
|
internet_gateway = dict(type='bool', default=False),
|
||||||
resource_tags = dict(type='dict'),
|
resource_tags = dict(type='dict'),
|
||||||
route_tables = dict(type='list'),
|
route_tables = dict(type='list', default=[]),
|
||||||
state = dict(choices=['present', 'absent'], default='present'),
|
state = dict(choices=['present', 'absent'], default='present'),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue