diff --git a/offline/cd.sh b/offline/cd.sh index 4626ebfc1..09f1dbc11 100755 --- a/offline/cd.sh +++ b/offline/cd.sh @@ -4,6 +4,12 @@ set -euo pipefail function cleanup { (cd terraform/examples/wire-server-deploy-offline-hetzner ; terraform destroy -auto-approve) + echo "Running terraform plan:" + terraform plan + echo "Running terraform providers" + terraform providers + echo "Running terraform init" + terraform init echo done } trap cleanup EXIT