Skip to content

Commit

Permalink
Add source_version param to ec2_launch_template module (ansible-colle…
Browse files Browse the repository at this point in the history
…ctions#239)

Add source_version param to ec2_launch_template module

SUMMARY
Add support for Boto3.create_launch_template_version's source_version parameter.
Accepted values:

int (specific version) : Creates a new launch template using this version as the base, hence keeping all its parameters
string ( 'latest') : Uses the latest found in list template_versions

ISSUE TYPE

Feature Pull Request

COMPONENT NAME
ec2_launch_template.py
ADDITIONAL INFORMATION
Sanity tests passed for this module.

Reviewed-by: Mark Chappell <None>
Reviewed-by: Markus Bergholz <[email protected]>
Reviewed-by: Joseph Torcasso <None>
  • Loading branch information
luiseterc authored Jul 1, 2022
1 parent 0e1b283 commit 19e2358
Showing 1 changed file with 41 additions and 6 deletions.
47 changes: 41 additions & 6 deletions ec2_launch_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,14 @@
For any VPC other than Default, you must use I(security_group_ids).
type: list
elements: str
source_version:
description: >
The version number of the launch template version on which to base the new version.
The new version inherits the same launch parameters as the source version, except for parameters that you explicity specify.
Snapshots applied to the block device mapping are ignored when creating a new version unless they are explicitly included.
type: str
default: latest
version_added: 4.1.0
tags:
type: dict
description:
Expand Down Expand Up @@ -569,12 +577,38 @@ def create_or_update(module, template_options):
out['changed'] = False
return out
try:
resp = ec2.create_launch_template_version(
LaunchTemplateId=template['LaunchTemplateId'],
LaunchTemplateData=lt_data,
ClientToken=uuid4().hex,
aws_retry=True,
)
if module.params.get('source_version') in (None, ''):
resp = ec2.create_launch_template_version(
LaunchTemplateId=template['LaunchTemplateId'],
LaunchTemplateData=lt_data,
ClientToken=uuid4().hex,
aws_retry=True,
)
elif module.params.get('source_version') == 'latest':
resp = ec2.create_launch_template_version(
LaunchTemplateId=template['LaunchTemplateId'],
LaunchTemplateData=lt_data,
ClientToken=uuid4().hex,
SourceVersion=str(most_recent['VersionNumber']),
aws_retry=True,
)
else:
try:
int(module.params.get('source_version'))
except ValueError:
module.fail_json(msg='source_version param was not a valid integer, got "{0}"'.format(module.params.get('source_version')))
# get source template version
source_version = next((v for v in template_versions if v['VersionNumber'] == int(module.params.get('source_version'))), None)
if source_version is None:
module.fail_json(msg='source_version does not exist, got "{0}"'.format(module.params.get('source_version')))
resp = ec2.create_launch_template_version(
LaunchTemplateId=template['LaunchTemplateId'],
LaunchTemplateData=lt_data,
ClientToken=uuid4().hex,
SourceVersion=str(source_version['VersionNumber']),
aws_retry=True,
)

if module.params.get('default_version') in (None, ''):
# no need to do anything, leave the existing version as default
pass
Expand Down Expand Up @@ -748,6 +782,7 @@ def main():
template_name=dict(aliases=['name']),
template_id=dict(aliases=['id']),
default_version=dict(default='latest'),
source_version=dict(default='latest')
)

arg_spec.update(template_options)
Expand Down

0 comments on commit 19e2358

Please sign in to comment.