Merge pull request #966 from jnsaff/devel

Added support for tagging images in ec2_ami.py
reviewable/pr18780/r1
Brian Coca 10 years ago
commit 89bd6af0ed

@ -83,6 +83,12 @@ options:
required: false
default: null
aliases: []
tags:
description:
- a hash/dictionary of tags to add to the new image; '{"key":"value"}' and '{"key":"value","key":"value"}'
required: false
default: null
aliases: []
author: Evan Duffield <eduffield@iacquire.com>
extends_documentation_fragment: aws
@ -98,6 +104,9 @@ EXAMPLES = '''
instance_id: i-xxxxxx
wait: yes
name: newtest
tags:
Name: newtest
Service: TestService
register: instance
# Basic AMI Creation, without waiting
@ -155,6 +164,7 @@ def create_image(module, ec2):
wait_timeout = int(module.params.get('wait_timeout'))
description = module.params.get('description')
no_reboot = module.params.get('no_reboot')
tags = module.params.get('tags')
try:
params = {'instance_id': instance_id,
@ -190,6 +200,12 @@ def create_image(module, ec2):
# waiting took too long
module.fail_json(msg = "timed out waiting for image to be created")
if tags:
try:
ec2.create_tags(image_id, tags)
except boto.exception.EC2ResponseError, e:
module.fail_json(msg = "Image tagging failed => %s: %s" % (e.error_code, e.error_message))
module.exit_json(msg="AMI creation operation complete", image_id=image_id, state=img.state, changed=True)
@ -241,6 +257,8 @@ def main():
description = dict(default=""),
no_reboot = dict(default=False, type="bool"),
state = dict(default='present'),
tags = dict(type='dict'),
)
)
module = AnsibleModule(argument_spec=argument_spec)

Loading…
Cancel
Save