Add AMI name and platform to outputs on AMI creation
This commit is contained in:
parent
51949fdeec
commit
57f2fee4d9
1 changed files with 3 additions and 1 deletions
|
@ -401,7 +401,9 @@ def get_ami_info(image):
|
||||||
root_device_name=image.root_device_name,
|
root_device_name=image.root_device_name,
|
||||||
root_device_type=image.root_device_type,
|
root_device_type=image.root_device_type,
|
||||||
tags=image.tags,
|
tags=image.tags,
|
||||||
virtualization_type=image.virtualization_type
|
virtualization_type=image.virtualization_type,
|
||||||
|
name=image.name,
|
||||||
|
platform=image.platform
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue