stage #95

Merged
micqdf merged 2 commits from stage into master 2026-03-02 22:33:27 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 880bbcceca - Show all commits

View File

@@ -57,7 +57,7 @@ jobs:
set -euo pipefail
for attempt in 1 2; do
echo "Terraform plan attempt $attempt/2"
if timeout 20m terraform plan -parallelism=1 -out=tfplan; then
if timeout 20m terraform plan -refresh=false -parallelism=1 -out=tfplan; then
exit 0
fi
if [ "$attempt" -eq 1 ]; then

View File

@@ -71,7 +71,7 @@ jobs:
set -euo pipefail
for attempt in 1 2; do
echo "Terraform plan attempt $attempt/2"
if timeout 20m terraform plan -parallelism=1 -out=tfplan; then
if timeout 20m terraform plan -refresh=false -parallelism=1 -out=tfplan; then
exit 0
fi
if [ "$attempt" -eq 1 ]; then