[docs] update ec2_ami_copy docs to clarify encrypted snapshots (#19641)
Docs formatting.
This commit is contained in:
parent
7ba746dc1e
commit
e66501b0b7
1 changed files with 8 additions and 8 deletions
|
@ -29,25 +29,25 @@ version_added: "2.0"
|
||||||
options:
|
options:
|
||||||
source_region:
|
source_region:
|
||||||
description:
|
description:
|
||||||
- the source region that AMI should be copied from
|
- The source region the AMI should be copied from.
|
||||||
required: true
|
required: true
|
||||||
source_image_id:
|
source_image_id:
|
||||||
description:
|
description:
|
||||||
- the id of the image in source region that should be copied
|
- The ID of the AMI in source region that should be copied.
|
||||||
required: true
|
required: true
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- The name of the new image to copy
|
- The name of the new AMI to copy.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
description:
|
description:
|
||||||
description:
|
description:
|
||||||
- An optional human-readable string describing the contents and purpose of the new AMI.
|
- A human-readable string describing the contents and purpose of the new AMI.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
encrypted:
|
encrypted:
|
||||||
description:
|
description:
|
||||||
- Whether or not to encrypt the target image
|
- Whether or not the destination snapshots of the copied AMI should be encrypted.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
version_added: "2.2"
|
version_added: "2.2"
|
||||||
|
@ -59,18 +59,18 @@ options:
|
||||||
version_added: "2.2"
|
version_added: "2.2"
|
||||||
wait:
|
wait:
|
||||||
description:
|
description:
|
||||||
- wait for the copied AMI to be in state 'available' before returning.
|
- Wait for the copied AMI to be in state 'available' before returning.
|
||||||
required: false
|
required: false
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
choices: [ "yes", "no" ]
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- How long before wait gives up, in seconds.
|
||||||
required: false
|
required: false
|
||||||
default: 1200
|
default: 1200
|
||||||
tags:
|
tags:
|
||||||
description:
|
description:
|
||||||
- a hash/dictionary of tags to add to the new copied AMI; '{"key":"value"}' and '{"key":"value","key":"value"}'
|
- A hash/dictionary of tags to add to the new copied AMI; '{"key":"value"}' and '{"key":"value","key":"value"}'
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue