mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-13 17:44:22 -07:00
Merge pull request #5276 from evan82/patch-1
Fix ec2_ami no_reboot setting (currently it will not reboot instances to...
This commit is contained in:
commit
9cc1e0e963
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ def main():
|
||||||
wait = dict(type="bool", default=False),
|
wait = dict(type="bool", default=False),
|
||||||
wait_timeout = dict(default=900),
|
wait_timeout = dict(default=900),
|
||||||
description = dict(default=""),
|
description = dict(default=""),
|
||||||
no_reboot = dict(default=True, type="bool"),
|
no_reboot = dict(default=False, type="bool"),
|
||||||
state = dict(default='present'),
|
state = dict(default='present'),
|
||||||
region = dict(aliases=['aws_region', 'ec2_region'], choices=AWS_REGIONS)
|
region = dict(aliases=['aws_region', 'ec2_region'], choices=AWS_REGIONS)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue