mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
Merge pull request #6422 from risaacson/migrate_booleans_bool_ec2_vpc
Bulk update of choices=BOOLEANS to type='bool'
This commit is contained in:
commit
e784ba533a
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…
Add table
Add a link
Reference in a new issue