mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00: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:
@@ -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'),
|
||||
|
||||
Reference in New Issue
Block a user