You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ stax foo delete
Really delete stack foo? y
2018-12-05 17:57:02 UTC DELETE_IN_PROGRESS AWS::CloudFormation::Stack foo User Initiated
Stack [foo] does not exist
The does not exist is a little aggressive for an event which is the correct result of the user's intended action. It results from just printing the message for Aws::CloudFormation::Errors::ValidationError during the tail following delete.
That rescue could probably be smarter and check stack_status, printing a more "success!"-like message if DELETE_COMPLETE.
The text was updated successfully, but these errors were encountered:
The
does not exist
is a little aggressive for an event which is the correct result of the user's intended action. It results from just printing the message forAws::CloudFormation::Errors::ValidationError
during thetail
following delete.That rescue could probably be smarter and check
stack_status
, printing a more "success!"-like message ifDELETE_COMPLETE
.The text was updated successfully, but these errors were encountered: