Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding log events to ensure they are occuring #1497

Merged
merged 1 commit into from
Aug 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions destroy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ do
#delete any unversioned files
echo `aws s3 rm s3://$x/ --recursive`
#turn off writes to bucket
echo 'Denying writes to bucket ' $x
echo `aws s3api put-bucket-policy --bucket $x --policy '{
"Version": "2012-10-17",
"Statement": [
Expand All @@ -67,6 +68,7 @@ do
]
}'`
#force delete the bucket
echo 'Deleting bucket ' $x
echo `aws s3api rb s3://$x --force`
done
echo 'deleting stack: ' $i
Expand Down
Loading