Skip to content

Commit

Permalink
fix: move the tofu global option
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamir David authored and Tamir David committed Oct 13, 2024
1 parent 212ff29 commit e2cb921
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cross-cloud-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,13 @@ jobs:
fi
- name: Initialize OpenTofu
run: tofu init -chdir=$TF_DIR
run: tofu -chdir=$TF_DIR init

- name: Plan OpenTofu
run: tofu plan -chdir=$TF_DIR
run: tofu -chdir=$TF_DIR plan

- name: Apply OpenTofu Configuration
run: tofu apply -chdir=$TF_DIR -auto-approve
run: tofu -chdir=$TF_DIR apply -auto-approve

- name: Verify cluster Access
run: |
Expand All @@ -163,4 +163,4 @@ jobs:
- name: Destroy Resources
if: always() # Ensures this runs even if earlier steps fail
run: tofu destroy -chdir=$TF_DIR -auto-approve
run: tofu -chdir=$TF_DIR destroy -auto-approve

0 comments on commit e2cb921

Please sign in to comment.