Commit e725eea4 by Michael DeHaan

Merge pull request #4770 from dragon3/devel

ec2_vol: return volume_id/device even when volume mapping already exists
parents afa59883 19b5008c
......@@ -190,7 +190,8 @@ def main():
if device_name:
if device_name in inst.block_device_mapping:
module.exit_json(msg="Volume mapping for %s already exists on instance %s" % (device_name, instance),
volume_id=inst.block_device_mapping[device_name].volume_id,
device=device_name,
changed=False)
# If custom iops is defined we use volume_type "io1" rather than the default of "standard"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment