Skip to content

Commit 8bad1f9

Browse files
committed
Fix action
1 parent 82a53ec commit 8bad1f9

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/terraform.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,18 @@ jobs:
2525
shell: bash
2626

2727
steps:
28+
2829
# Checkout the repository to the GitHub Actions runner
2930
- name: Checkout
3031
uses: actions/checkout@v3
3132

33+
# Install terraform
34+
- name: Setup Terraform
35+
uses: hashicorp/setup-terraform@v3
36+
with:
37+
terraform_version: "^1.3.7"
38+
terraform_wrapper: false
39+
3240
# Copy the terraform.tfvars.example file for variables
3341
- name: Create terraform.tfvars
3442
run: cp ./terraform.tfvars.example ./terraform.tfvars

0 commit comments

Comments
 (0)