mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-18 15:09:09 -07:00
collection: Change default='no's and 'yes's to default=False and default=True (#556)
* Change default={'no','yes'} to default={False,True} * Add changelog * Remove changelog
This commit is contained in:
parent
004eb6992f
commit
650ae65f24
32 changed files with 58 additions and 58 deletions
|
@ -434,13 +434,13 @@ def main():
|
|||
image_id=dict(),
|
||||
region_id=dict(),
|
||||
ssh_key_ids=dict(type='list'),
|
||||
virtio=dict(type='bool', default='yes'),
|
||||
private_networking=dict(type='bool', default='no'),
|
||||
backups_enabled=dict(type='bool', default='no'),
|
||||
virtio=dict(type='bool', default=True),
|
||||
private_networking=dict(type='bool', default=False),
|
||||
backups_enabled=dict(type='bool', default=False),
|
||||
id=dict(aliases=['droplet_id'], type='int'),
|
||||
unique_name=dict(type='bool', default='no'),
|
||||
unique_name=dict(type='bool', default=False),
|
||||
user_data=dict(default=None),
|
||||
ipv6=dict(type='bool', default='no'),
|
||||
ipv6=dict(type='bool', default=False),
|
||||
wait=dict(type='bool', default=True),
|
||||
wait_timeout=dict(default=300, type='int'),
|
||||
ssh_pub_key=dict(type='str'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue