mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-04 05:04:22 -07:00
update defaults and help for 'name' and 'instance_names'
This commit is contained in:
parent
81b5c93c78
commit
1b07e7a521
1 changed files with 2 additions and 3 deletions
|
@ -52,9 +52,8 @@ options:
|
||||||
aliases: []
|
aliases: []
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- instance name (or name prefix) to be used for each created instance
|
- identifier when working with a single instance
|
||||||
required: false
|
required: false
|
||||||
default: "gce"
|
|
||||||
aliases: []
|
aliases: []
|
||||||
network:
|
network:
|
||||||
description:
|
description:
|
||||||
|
@ -344,7 +343,7 @@ def main():
|
||||||
instance_names = dict(),
|
instance_names = dict(),
|
||||||
machine_type = dict(default='n1-standard-1'),
|
machine_type = dict(default='n1-standard-1'),
|
||||||
metadata = dict(),
|
metadata = dict(),
|
||||||
name = dict(),
|
name = dict(default='gce'),
|
||||||
network = dict(default='default'),
|
network = dict(default='default'),
|
||||||
persistent_boot_disk = dict(type='bool', choices=BOOLEANS, default=False),
|
persistent_boot_disk = dict(type='bool', choices=BOOLEANS, default=False),
|
||||||
state = dict(choices=['active', 'present', 'absent', 'deleted'],
|
state = dict(choices=['active', 'present', 'absent', 'deleted'],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue