We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf5e660 commit 59467ccCopy full SHA for 59467cc
internal/servicedeployer/_static/terraform_deployer_run.sh
@@ -14,6 +14,9 @@ cleanup() {
14
set -x
15
terraform destroy -auto-approve
16
17
+ echo "After Terraform destroy command"
18
+ aws s3api list-buckets --query "Buckets[].Name" --output text | tr '\t' '\n'
19
+
20
exit $r
21
}
22
trap cleanup EXIT INT TERM
@@ -25,6 +28,7 @@ export AWS_DEFAULT_REGION="${AWS_REGION}"
25
28
echo "Before Terraform Apply command"
26
29
aws s3api list-buckets --query "Buckets[].Name" --output text | tr '\t' '\n'
27
30
31
+export TF_LOG="DEBUG"
32
terraform apply -auto-approve
33
34
echo "After Terraform Apply command"
0 commit comments