Bulk update of choices=BOOLEANS to type='bool'

pull/6422/head
Richard C Isaacson 10 years ago
parent f1301f6fd9
commit e40fd9bb0d

@ -491,13 +491,13 @@ def main():
argument_spec.update(dict(
cidr_block = dict(),
instance_tenancy = dict(choices=['default', 'dedicated'], default='default'),
wait = dict(choices=BOOLEANS, default=False),
wait = dict(type='bool', default=False),
wait_timeout = dict(default=300),
dns_support = dict(choices=BOOLEANS, default=True),
dns_hostnames = dict(choices=BOOLEANS, default=True),
dns_support = dict(type='bool', default=True),
dns_hostnames = dict(type='bool', default=True),
subnets = dict(type='list'),
vpc_id = dict(),
internet_gateway = dict(choices=BOOLEANS, default=False),
internet_gateway = dict(type='bool', default=False),
route_tables = dict(type='list'),
state = dict(choices=['present', 'absent'], default='present'),
)

Loading…
Cancel
Save