Updated ec2_lc docs

reviewable/pr18780/r1
Jonathan Davila 9 years ago
parent a7e399955f
commit 51d2f49ae0

@ -59,73 +59,58 @@ options:
description: description:
- a list of volume dicts, each containing device name and optionally ephemeral id or snapshot id. Size and type (and number of iops for io device type) must be specified for a new volume or a root volume, and may be passed for a snapshot volume. For any volume, a volume size less than 1 will be interpreted as a request not to create the volume. - a list of volume dicts, each containing device name and optionally ephemeral id or snapshot id. Size and type (and number of iops for io device type) must be specified for a new volume or a root volume, and may be passed for a snapshot volume. For any volume, a volume size less than 1 will be interpreted as a request not to create the volume.
required: false required: false
default: null
aliases: []
user_data: user_data:
description: description:
- opaque blob of data which is made available to the ec2 instance - opaque blob of data which is made available to the ec2 instance
required: false required: false
default: null
aliases: []
kernel_id: kernel_id:
description: description:
- Kernel id for the EC2 instance - Kernel id for the EC2 instance
required: false required: false
default: null
aliases: []
spot_price: spot_price:
description: description:
- The spot price you are bidding. Only applies for an autoscaling group with spot instances. - The spot price you are bidding. Only applies for an autoscaling group with spot instances.
required: false required: false
default: null
instance_monitoring: instance_monitoring:
description: description:
- whether instances in group are launched with detailed monitoring. - whether instances in group are launched with detailed monitoring.
required: false
default: false default: false
aliases: []
assign_public_ip: assign_public_ip:
description: description:
- Used for Auto Scaling groups that launch instances into an Amazon Virtual Private Cloud. Specifies whether to assign a public IP address to each instance launched in a Amazon VPC. - Used for Auto Scaling groups that launch instances into an Amazon Virtual Private Cloud. Specifies whether to assign a public IP address to each instance launched in a Amazon VPC.
required: false required: false
aliases: []
version_added: "1.8" version_added: "1.8"
ramdisk_id: ramdisk_id:
description: description:
- A RAM disk id for the instances. - A RAM disk id for the instances.
required: false required: false
default: null
aliases: []
version_added: "1.8" version_added: "1.8"
instance_profile_name: instance_profile_name:
description: description:
- The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instances. - The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instances.
required: false required: false
default: null
aliases: []
version_added: "1.8" version_added: "1.8"
ebs_optimized: ebs_optimized:
description: description:
- Specifies whether the instance is optimized for EBS I/O (true) or not (false). - Specifies whether the instance is optimized for EBS I/O (true) or not (false).
required: false required: false
default: false default: false
aliases: []
version_added: "1.8" version_added: "1.8"
classic_link_vpc_id: classic_link_vpc_id:
description: description:
- Id of ClassicLink enabled VPC - Id of ClassicLink enabled VPC
required: false required: false
default: null
version_added: "2.0" version_added: "2.0"
classic_link_vpc_security_groups: classic_link_vpc_security_groups:
description: description:
- A list of security group id's with which to associate the ClassicLink VPC instances. - A list of security group id's with which to associate the ClassicLink VPC instances.
required: false required: false
default: null
version_added: "2.0" version_added: "2.0"
extends_documentation_fragment: extends_documentation_fragment:
- aws - aws
- ec2 - ec2
requires:
- "boto >= 2.39.0"
""" """
EXAMPLES = ''' EXAMPLES = '''

Loading…
Cancel
Save