mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
ec2_snapshot: document wait, wait_timeout params
Document the wait and wait_timeout params for ec2_snapshot. This is important because snapshots can take a long time to complete, and the module defaults to wait=yes.
This commit is contained in:
committed by
Matt Clay
parent
57ce7b1ea1
commit
5c06bb6dca
@@ -48,7 +48,20 @@ options:
|
|||||||
- a hash/dictionary of tags to add to the snapshot
|
- a hash/dictionary of tags to add to the snapshot
|
||||||
required: false
|
required: false
|
||||||
version_added: "1.6"
|
version_added: "1.6"
|
||||||
|
wait:
|
||||||
|
description:
|
||||||
|
- wait for the snapshot to be ready
|
||||||
|
choices: ['yes', 'no']
|
||||||
|
required: false
|
||||||
|
default: yes
|
||||||
|
version_added: "1.5.1"
|
||||||
|
wait_timeout:
|
||||||
|
description:
|
||||||
|
- how long before wait gives up, in seconds
|
||||||
|
- specify 0 to wait forever
|
||||||
|
required: false
|
||||||
|
default: 0
|
||||||
|
version_added: "1.5.1"
|
||||||
author: Will Thames
|
author: Will Thames
|
||||||
extends_documentation_fragment: aws
|
extends_documentation_fragment: aws
|
||||||
'''
|
'''
|
||||||
|
|||||||
Reference in New Issue
Block a user