Add "block_device_mapping" parameter on EC2_AMI Amazon module - ugraded
This commit is contained in:
parent
475aa78763
commit
1e4bd62af5
1 changed files with 15 additions and 3 deletions
|
@ -136,6 +136,7 @@ import time
|
||||||
try:
|
try:
|
||||||
import boto
|
import boto
|
||||||
import boto.ec2
|
import boto.ec2
|
||||||
|
from boto.ec2.blockdevicemapping import BlockDeviceType, BlockDeviceMapping
|
||||||
HAS_BOTO = True
|
HAS_BOTO = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
HAS_BOTO = False
|
HAS_BOTO = False
|
||||||
|
@ -155,6 +156,7 @@ def create_image(module, ec2):
|
||||||
wait_timeout = int(module.params.get('wait_timeout'))
|
wait_timeout = int(module.params.get('wait_timeout'))
|
||||||
description = module.params.get('description')
|
description = module.params.get('description')
|
||||||
no_reboot = module.params.get('no_reboot')
|
no_reboot = module.params.get('no_reboot')
|
||||||
|
device_mapping = module.params.get('device_mapping')
|
||||||
tags = module.params.get('tags')
|
tags = module.params.get('tags')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -163,6 +165,17 @@ def create_image(module, ec2):
|
||||||
'description': description,
|
'description': description,
|
||||||
'no_reboot': no_reboot}
|
'no_reboot': no_reboot}
|
||||||
|
|
||||||
|
if device_mapping:
|
||||||
|
bdm = BlockDeviceMapping()
|
||||||
|
for device in device_mapping:
|
||||||
|
if 'device_name' not in device:
|
||||||
|
module.fail_json(msg = 'Device name must be set for volume')
|
||||||
|
device_name = device['device_name']
|
||||||
|
del device['device_name']
|
||||||
|
bd = BlockDeviceType(**device)
|
||||||
|
bdm[device_name] = bd
|
||||||
|
params['block_device_mapping'] = bdm
|
||||||
|
|
||||||
image_id = ec2.create_image(**params)
|
image_id = ec2.create_image(**params)
|
||||||
except boto.exception.BotoServerError, e:
|
except boto.exception.BotoServerError, e:
|
||||||
if e.error_code == 'InvalidAMIName.Duplicate':
|
if e.error_code == 'InvalidAMIName.Duplicate':
|
||||||
|
@ -257,8 +270,8 @@ def main():
|
||||||
description = dict(default=""),
|
description = dict(default=""),
|
||||||
no_reboot = dict(default=False, type="bool"),
|
no_reboot = dict(default=False, type="bool"),
|
||||||
state = dict(default='present'),
|
state = dict(default='present'),
|
||||||
tags = dict(type='dict'),
|
device_mapping = dict(type='list'),
|
||||||
|
tags = dict(type='dict')
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
module = AnsibleModule(argument_spec=argument_spec)
|
module = AnsibleModule(argument_spec=argument_spec)
|
||||||
|
@ -291,4 +304,3 @@ from ansible.module_utils.basic import *
|
||||||
from ansible.module_utils.ec2 import *
|
from ansible.module_utils.ec2 import *
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue