diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ci/deploy.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/ci/deploy.sh b/scripts/ci/deploy.sh index 125c910..c068e5c 100755 --- a/scripts/ci/deploy.sh +++ b/scripts/ci/deploy.sh @@ -72,7 +72,8 @@ if [[ "${DESTROY_VOLUME:-}" != "" ]]; then echo "Destroying existing infrastructure..." terraform destroy -input=false -auto-approve > ./logs/terraform-destroy.txt 2>&1 else - echo "Skipping explicit intentional destruction of existing infrastructure..." + echo 'Refreshing view on existing infrastructure...' + terraform refresh > ./logs/terraform-refresh.txt 2>&1 fi echo "Done." |