Skip to content

Commit 71758f4

Browse files
authored
terraform: pin to 1.7.5 until 1.8.0 crash is resolved (#26356)
Signed-off-by: Ryan Cragun <[email protected]>
1 parent f2b5290 commit 71758f4

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

.github/workflows/enos-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
- uses: hashicorp/setup-terraform@v3
4242
with:
4343
terraform_wrapper: false
44+
terraform_version: "1.7.5" # Pin until 1.8.x crash has been resolved
4445
- uses: hashicorp/action-setup-enos@v1
4546
with:
4647
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}

.github/workflows/enos-run-k8s.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
# the Terraform wrapper will break Terraform execution in Enos because
3939
# it changes the output to text when we expect it to be JSON.
4040
terraform_wrapper: false
41+
terraform_version: "1.7.5" # Pin until 1.8.x crash has been resolved
4142
- name: Set up Enos
4243
uses: hashicorp/action-setup-enos@v1
4344
with:

.github/workflows/test-ci-bootstrap.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3333
- name: Set up Terraform
3434
uses: hashicorp/setup-terraform@v3
35+
with:
36+
terraform_version: "1.7.5" # Pin until 1.8.x crash has been resolved
3537
- name: Configure AWS credentials
3638
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2
3739
with:

.github/workflows/test-enos-scenario-ui.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ jobs:
9090
with:
9191
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
9292
terraform_wrapper: false
93+
terraform_version: "1.7.5" # Pin until 1.8.x crash has been resolved
9394
- name: Prepare scenario dependencies
9495
run: |
9596
mkdir -p ./enos/support/terraform-plugin-cache

.github/workflows/test-run-enos-scenario-matrix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ jobs:
107107
# the Terraform wrapper will break Terraform execution in Enos because
108108
# it changes the output to text when we expect it to be JSON.
109109
terraform_wrapper: false
110+
terraform_version: "1.7.5" # Pin until 1.8.x crash has been resolved
110111
- uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2
111112
with:
112113
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_CI }}

0 commit comments

Comments
 (0)