9 lines
143 B
Bash
Executable File
9 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "=== Destroying Infrastructure ==="
|
|
cd terraform
|
|
terraform destroy -auto-approve
|
|
rm -rf .terraform/
|
|
echo "Destroyed."
|