Skip to content

Commit b2f7c29

Browse files
committed
feat: add express mode stabilization warning to sam deploy
1 parent a6f5924 commit b2f7c29

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

samcli/commands/deploy/deploy_context.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,12 @@ def deploy(
292292
stack_name, changeset_type, disable_rollback, self.on_failure, marker_time, self.max_wait_duration
293293
)
294294
click.echo(self.MSG_EXECUTE_SUCCESS.format(stack_name=stack_name, region=region))
295+
if self.express:
296+
click.secho(
297+
"\nDeployed with CloudFormation Express mode. "
298+
"Resources may still be stabilizing in the background.",
299+
fg="yellow",
300+
)
295301

296302
except deploy_exceptions.ChangeEmptyError as ex:
297303
if fail_on_empty_changeset:

0 commit comments

Comments
 (0)