* Add U() in front of URL
* Add period at end of statement
* Spell check

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2018-10-10 20:14:17 +05:30 committed by Ryan Brown
parent 452a4ab781
commit d76a84a6c8
37 changed files with 110 additions and 110 deletions

View file

@ -26,21 +26,21 @@ options:
- If you specify one or more instance IDs, only instances that have the specified IDs are returned.
state:
description:
- Goal state for the instances
- Goal state for the instances.
choices: [present, terminated, running, started, stopped, restarted, rebooted, absent]
default: present
wait:
description:
- Whether or not to wait for the desired state (use wait_timeout to customize this)
- Whether or not to wait for the desired state (use wait_timeout to customize this).
default: true
wait_timeout:
description:
- How long to wait (in seconds) for the instance to finish booting/terminating
- How long to wait (in seconds) for the instance to finish booting/terminating.
default: 600
instance_type:
description:
- Instance type to use for the instance, see U(http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html)
Only required when instance is not already present
- Instance type to use for the instance, see U(https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html)
Only required when instance is not already present.
default: t2.micro
user_data:
description:
@ -57,7 +57,7 @@ options:
- IP address or DNS name of Tower server. Must be accessible via this address from the VPC that this instance will be launched in.
job_template_id:
description:
- Either the integer ID of the Tower Job Template, or the name (name supported only for Tower 3.2+)
- Either the integer ID of the Tower Job Template, or the name (name supported only for Tower 3.2+).
host_config_key:
description:
- Host configuration secret key generated by the Tower job template.
@ -93,7 +93,7 @@ options:
vpc_subnet_id:
description:
- The subnet ID in which to launch the instance (VPC)
If none is provided, ec2_instance will chose the default zone of the default VPC
If none is provided, ec2_instance will chose the default zone of the default VPC.
aliases: ['subnet_id']
network:
description:
@ -110,12 +110,12 @@ options:
- A list of block device mappings, by default this will always use the AMI root device so the volumes option is primarily for adding more storage.
- A mapping contains the (optional) keys device_name, virtual_name, ebs.volume_type, ebs.volume_size, ebs.kms_key_id,
ebs.iops, and ebs.delete_on_termination.
- For more information about each parameter, see U(https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_BlockDeviceMapping.html)
- For more information about each parameter, see U(https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_BlockDeviceMapping.html).
launch_template:
description:
- The EC2 launch template to base instance configuration on.
- I(launch_template.id) the ID or the launch template (optional if name is specified)
- I(launch_template.name) the pretty name of the launch template (optional if id is specified)
- I(launch_template.id) the ID or the launch template (optional if name is specified).
- I(launch_template.name) the pretty name of the launch template (optional if id is specified).
- I(launch_template.version) the specific version of the launch template to use. If unspecified, the template default is chosen.
key_name:
description:
@ -151,7 +151,7 @@ options:
suboptions:
threads_per_core:
description:
- Select the number of threads per core to enable. Disable or Enable Intel HT
- Select the number of threads per core to enable. Disable or Enable Intel HT.
choices: [1, 2]
required: true
core_count:
@ -163,12 +163,12 @@ options:
- Whether to allow detailed cloudwatch metrics to be collected, enabling more detailed alerting.
ebs_optimized:
description:
- Whether instance is should use optimized EBS volumes, see U(http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html)
- Whether instance is should use optimized EBS volumes, see U(https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html).
filters:
description:
- A dict of filters to apply when deciding whether existing instances match and should be altered. Each dict item
consists of a filter key and a filter value. See
U(http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html)
U(https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html).
for possible filters. Filter names and values are case sensitive.
By default, instances are filtered for counting by their "Name" tag, base AMI, state (running, by default), and
subnet ID. Any queryable filter can be used. Good candidates are specific tags, SSH keys, or security groups.