Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BrianJakovich/9831fc19a044d8d3667a5032cffce9ae to your computer and use it in GitHub Desktop.
Save BrianJakovich/9831fc19a044d8d3667a5032cffce9ae to your computer and use it in GitHub Desktop.
workspaces-image-factory/scripts/teardown_workspace.py
import boto3
def main():
cloudformation = boto3.client('cloudformation')
response = cloudformation.delete_stack(StackName='WorkspaceBuilder')
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment