Merge pull request #3072 from bblommers/cloudformation-check-name-in-use

CloudFormation - Check stack name in use
This commit is contained in:
Steve Pulec 2020-06-14 14:01:48 -05:00 committed by GitHub
commit 09c061e8a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 4 deletions

View file

@ -98,12 +98,12 @@ def test_create_stack_hosted_zone_by_id():
},
}
conn.create_stack(
"test_stack", template_body=json.dumps(dummy_template), parameters={}.items()
"test_stack1", template_body=json.dumps(dummy_template), parameters={}.items()
)
r53_conn = boto.connect_route53()
zone_id = r53_conn.get_zones()[0].id
conn.create_stack(
"test_stack",
"test_stack2",
template_body=json.dumps(dummy_template2),
parameters={"ZoneId": zone_id}.items(),
)