Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update terraform version #805

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1079,6 +1079,8 @@ jobs:

- name: Setup Terraform
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3
with:
aneojgurhem marked this conversation as resolved.
Show resolved Hide resolved
terraform_version: 1.9.8

- name: Deploy Core
run: |
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/code-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
ref: ${{ github.ref }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.9.8

- name: Check Format
run: terraform fmt -check -recursive -diff
Expand Down
4 changes: 4 additions & 0 deletions terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
terraform {
aneojgurhem marked this conversation as resolved.
Show resolved Hide resolved
required_version = "= 1.9.8"
}

module "fluenbit" {
source = "./modules/monitoring/fluentbit"
image = var.log_driver_image
Expand Down
Loading