Merge pull request #7893 from botify-labs/feature/add-launch-group-sport-support
Adding support for spot instances in ansible_lc.
This commit is contained in:
commit
3d19cd9cb3
1 changed files with 10 additions and 1 deletions
11
cloud/ec2_lc
Normal file → Executable file
11
cloud/ec2_lc
Normal file → Executable file
|
@ -68,6 +68,12 @@ options:
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
aliases: []
|
aliases: []
|
||||||
|
spot_price:
|
||||||
|
description:
|
||||||
|
- The spot price you are bidding. Only applies for an autoscaling group with spot instances.
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
aliases: []
|
||||||
extends_documentation_fragment: aws
|
extends_documentation_fragment: aws
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -126,6 +132,7 @@ def create_launch_config(connection, module):
|
||||||
user_data = module.params.get('user_data')
|
user_data = module.params.get('user_data')
|
||||||
volumes = module.params['volumes']
|
volumes = module.params['volumes']
|
||||||
instance_type = module.params.get('instance_type')
|
instance_type = module.params.get('instance_type')
|
||||||
|
spot_price = module.params.get('spot_price')
|
||||||
bdm = BlockDeviceMapping()
|
bdm = BlockDeviceMapping()
|
||||||
|
|
||||||
if volumes:
|
if volumes:
|
||||||
|
@ -144,7 +151,8 @@ def create_launch_config(connection, module):
|
||||||
security_groups=security_groups,
|
security_groups=security_groups,
|
||||||
user_data=user_data,
|
user_data=user_data,
|
||||||
block_device_mappings=[bdm],
|
block_device_mappings=[bdm],
|
||||||
instance_type=instance_type)
|
instance_type=instance_type,
|
||||||
|
spot_price=spot_price)
|
||||||
|
|
||||||
launch_configs = connection.get_all_launch_configurations(names=[name])
|
launch_configs = connection.get_all_launch_configurations(names=[name])
|
||||||
changed = False
|
changed = False
|
||||||
|
@ -184,6 +192,7 @@ def main():
|
||||||
volumes=dict(type='list'),
|
volumes=dict(type='list'),
|
||||||
instance_type=dict(type='str'),
|
instance_type=dict(type='str'),
|
||||||
state=dict(default='present', choices=['present', 'absent']),
|
state=dict(default='present', choices=['present', 'absent']),
|
||||||
|
spot_price=dict(type='float'),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue