Bulk update of choices=BOOLEANS to type='bool'
This commit is contained in:
parent
f1301f6fd9
commit
e40fd9bb0d
1 changed files with 4 additions and 4 deletions
|
@ -491,13 +491,13 @@ def main():
|
||||||
argument_spec.update(dict(
|
argument_spec.update(dict(
|
||||||
cidr_block = dict(),
|
cidr_block = dict(),
|
||||||
instance_tenancy = dict(choices=['default', 'dedicated'], default='default'),
|
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),
|
wait_timeout = dict(default=300),
|
||||||
dns_support = dict(choices=BOOLEANS, default=True),
|
dns_support = dict(type='bool', default=True),
|
||||||
dns_hostnames = dict(choices=BOOLEANS, default=True),
|
dns_hostnames = dict(type='bool', default=True),
|
||||||
subnets = dict(type='list'),
|
subnets = dict(type='list'),
|
||||||
vpc_id = dict(),
|
vpc_id = dict(),
|
||||||
internet_gateway = dict(choices=BOOLEANS, default=False),
|
internet_gateway = dict(type='bool', default=False),
|
||||||
route_tables = dict(type='list'),
|
route_tables = dict(type='list'),
|
||||||
state = dict(choices=['present', 'absent'], default='present'),
|
state = dict(choices=['present', 'absent'], default='present'),
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue