Fix Tags parameter on CloudFormation create_change_set method.

This commit is contained in:
Mark Challoner 2018-10-29 13:29:53 +00:00
commit a0708a70fc
No known key found for this signature in database
GPG key ID: 58EABDB1293D248B
2 changed files with 5 additions and 1 deletions

View file

@ -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']