include all launch config properties in the return
make all properties available when registering the result which is useful when wanting to launch a stand-alone instance based upon an existing Launch Config.
This commit is contained in:
parent
870446dd6b
commit
e025effc99
1 changed files with 2 additions and 1 deletions
|
@ -225,7 +225,8 @@ def create_launch_config(connection, module):
|
|||
|
||||
module.exit_json(changed=changed, name=result.name, created_time=str(result.created_time),
|
||||
image_id=result.image_id, arn=result.launch_configuration_arn,
|
||||
security_groups=result.security_groups, instance_type=instance_type)
|
||||
security_groups=result.security_groups, instance_type=result.instance_type,
|
||||
result=result)
|
||||
|
||||
|
||||
def delete_launch_config(connection, module):
|
||||
|
|
Loading…
Reference in a new issue