Add missing changes when creating a change set (#3039)
* Display changes when creating a change set * add change set id and description when describing stack * fix lint with flake8 and black
This commit is contained in:
parent
cb600377b4
commit
90e200f0f6
5 changed files with 51 additions and 25 deletions
|
|
@ -662,6 +662,10 @@ DESCRIBE_STACKS_TEMPLATE = """<DescribeStacksResponse>
|
|||
<member>
|
||||
<StackName>{{ stack.name }}</StackName>
|
||||
<StackId>{{ stack.stack_id }}</StackId>
|
||||
{% if stack.change_set_id %}
|
||||
<ChangeSetId>{{ stack.change_set_id }}</ChangeSetId>
|
||||
{% endif %}
|
||||
<Description>{{ stack.description }}</Description>
|
||||
<CreationTime>{{ stack.creation_time_iso_8601 }}</CreationTime>
|
||||
<StackStatus>{{ stack.status }}</StackStatus>
|
||||
{% if stack.notification_arns %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue