mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add AMI name and platform to outputs on AMI creation
This commit is contained in:
parent
e71cddc026
commit
39e46437bf
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_type=image.root_device_type,
|
||||
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