Fix Tags parameter on CloudFormation create_change_set method.
This commit is contained in:
parent
71a054af92
commit
a0708a70fc
2 changed files with 5 additions and 1 deletions
|
|
@ -391,6 +391,9 @@ def test_create_change_set_from_s3_url():
|
|||
TemplateURL=key_url,
|
||||
ChangeSetName='NewChangeSet',
|
||||
ChangeSetType='CREATE',
|
||||
Tags=[
|
||||
{'Key': 'tag-key', 'Value': 'tag-value'}
|
||||
],
|
||||
)
|
||||
assert 'arn:aws:cloudformation:us-west-1:123456789:changeSet/NewChangeSet/' in response['Id']
|
||||
assert 'arn:aws:cloudformation:us-east-1:123456789:stack/NewStack' in response['StackId']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue