Skip to content

Commit e832e86

Browse files
authored
Update deploy.py to include "CAPABILITY_AUTO_EXPAND"
1 parent aee2ed2 commit e832e86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

healthcheck/refarch_testtools/deploy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def deploy_stack(template_url, template_parameters, region, stack_base_name="ref
1616
StackName=stack_name,
1717
TemplateURL=template_url,
1818
Parameters=template_parameters,
19-
Capabilities=["CAPABILITY_IAM"])
19+
Capabilities=["CAPABILITY_IAM", "CAPABILITY_AUTO_EXPAND"])
2020

2121
try:
2222
_wait_for_create_complete(cloudformation, stack)
@@ -53,4 +53,4 @@ def log():
5353
_logger.debug("debug")
5454
_logger.error("error")
5555
_logger.critical("critical")
56-
_logger.warning("warning")
56+
_logger.warning("warning")

0 commit comments

Comments
 (0)