summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Paine <aioue@users.noreply.github.com>2016-12-30 15:36:29 +0000
committerRyan Brown <sb@ryansb.com>2016-12-30 10:36:29 -0500
commit7ba746dc1ee64a94ceed72f6a8c511ef32542d5e (patch)
treeb1c8d86330ac6a9bf4f243fcf0a896acc2b6ded8
parentba9f6326f4ff72b271392fd5ba0482b88dcb632f (diff)
downloadansible-7ba746dc1ee64a94ceed72f6a8c511ef32542d5e.tar.gz
Update ec2_ami.py (#19636)
- Consistent capitalisation in the descriptions - Removed redundant 'optional' notes when this is covered by the Boolean `optional` column - Clarified `instance_id` description
-rw-r--r--lib/ansible/modules/cloud/amazon/ec2_ami.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/lib/ansible/modules/cloud/amazon/ec2_ami.py b/lib/ansible/modules/cloud/amazon/ec2_ami.py
index 26426cf26d..ccd5a1222a 100644
--- a/lib/ansible/modules/cloud/amazon/ec2_ami.py
+++ b/lib/ansible/modules/cloud/amazon/ec2_ami.py
@@ -28,37 +28,38 @@ description:
options:
instance_id:
description:
- - instance id of the image to create
+ - Instance ID to create the AMI from.
required: false
default: null
name:
description:
- - The name of the new image to create
+ - The name of the new AMI.
required: false
default: null
wait:
description:
- - wait for the AMI to be in state 'available' before returning.
+ - Wait for the AMI to be in state 'available' before returning.
required: false
default: "no"
choices: [ "yes", "no" ]
wait_timeout:
description:
- - how long before wait gives up, in seconds
+ - How long before wait gives up, in seconds.
default: 300
state:
description:
- - create or deregister/delete image
+ - Create or deregister/delete AMI.
required: false
default: 'present'
+ choices: [ "absent", "present" ]
description:
description:
- - An optional human-readable string describing the contents and purpose of the AMI.
+ - Human-readable string describing the contents and purpose of the AMI.
required: false
default: null
no_reboot:
description:
- - An optional flag indicating that the bundling process should not attempt to shutdown the instance before bundling. If this flag is True, the responsibility of maintaining file system integrity is left to the owner of the instance. The default choice is "no".
+ - Flag indicating that the bundling process should not attempt to shutdown the instance before bundling. If this flag is True, the responsibility of maintaining file system integrity is left to the owner of the instance.
required: false
default: no
choices: [ "yes", "no" ]
@@ -70,25 +71,25 @@ options:
device_mapping:
version_added: "2.0"
description:
- - An optional list of device hashes/dictionaries with custom configurations (same block-device-mapping parameters)
+ - List of device hashes/dictionaries with custom configurations (same block-device-mapping parameters)
- "Valid properties include: device_name, volume_type, size (in GB), delete_on_termination (boolean), no_device (boolean), snapshot_id, iops (for io1 volume_type)"
required: false
default: null
delete_snapshot:
description:
- - Whether or not to delete snapshots when deregistering AMI.
+ - Delete snapshots when deregistering the AMI.
required: false
default: "no"
choices: [ "yes", "no" ]
tags:
description:
- - a dictionary of tags to add to the new image; '{"key":"value"}' and '{"key":"value","key":"value"}'
+ - A dictionary of tags to add to the new image; '{"key":"value"}' and '{"key":"value","key":"value"}'
required: false
default: null
version_added: "2.0"
launch_permissions:
description:
- - Users and groups that should be able to launch the ami. Expects
+ - Users and groups that should be able to launch the AMI. Expects
dictionary with a key of user_ids and/or group_names. user_ids should
be a list of account ids. group_name should be a list of groups, "all"
is the only acceptable value currently.