mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 05:40:23 -07:00
Allow ec2_lc to create EC2-Classic Launch Configs
Removes default value from ec2_lc so it can create launch configurations valid on a EC2-Classic environment. AWS API will not accept a assign_public_ip when creating an ASG outside of VPC.
This commit is contained in:
parent
771fdfb1f8
commit
b347875de0
1 changed files with 1 additions and 2 deletions
|
@ -93,7 +93,6 @@ options:
|
||||||
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
|
||||||
default: false
|
|
||||||
aliases: []
|
aliases: []
|
||||||
version_added: "1.8"
|
version_added: "1.8"
|
||||||
ramdisk_id:
|
ramdisk_id:
|
||||||
|
@ -255,7 +254,7 @@ def main():
|
||||||
ebs_optimized=dict(default=False, type='bool'),
|
ebs_optimized=dict(default=False, type='bool'),
|
||||||
associate_public_ip_address=dict(type='bool'),
|
associate_public_ip_address=dict(type='bool'),
|
||||||
instance_monitoring=dict(default=False, type='bool'),
|
instance_monitoring=dict(default=False, type='bool'),
|
||||||
assign_public_ip=dict(default=False, type='bool')
|
assign_public_ip=dict(type='bool')
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue