Commit 286ab6a0 by James Cammarata

Merge pull request #8868 from mike-d-d/fix-route_tables-default

Fix #8666 for real
parents ae0f80c6 4510f2e5
...@@ -575,11 +575,11 @@ def main(): ...@@ -575,11 +575,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', default=[]), subnets = dict(type='list'),
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', required=True), resource_tags = dict(type='dict', required=True),
route_tables = dict(type='list', default=[]), route_tables = dict(type='list'),
state = dict(choices=['present', 'absent'], default='present'), state = dict(choices=['present', 'absent'], default='present'),
) )
) )
......
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