Skip to content

Commit 3f491af

Browse files
committed
Upgrade to latest Terraform
This ensures that we're staying up to date with the latest version of Terraform and potentially fixes an issue we've been seeing with the AWS provider.
1 parent 4679bf6 commit 3f491af

File tree

22 files changed

+28
-28
lines changed

22 files changed

+28
-28
lines changed

.github/workflows/data-replication-pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
- name: Install terraform
109109
uses: hashicorp/setup-terraform@v3
110110
with:
111-
terraform_version: 1.11.4
111+
terraform_version: 1.13.3
112112
outputs:
113113
SNAPSHOT_ARN: ${{ steps.get-latest-snapshot.outputs.SNAPSHOT_ARN }}
114114

@@ -167,7 +167,7 @@ jobs:
167167
- name: Install terraform
168168
uses: hashicorp/setup-terraform@v3
169169
with:
170-
terraform_version: 1.11.4
170+
terraform_version: 1.13.3
171171
- name: Get db secret arn
172172
id: get-db-secret-arn
173173
working-directory: terraform/app
@@ -226,7 +226,7 @@ jobs:
226226
- name: Install terraform
227227
uses: hashicorp/setup-terraform@v3
228228
with:
229-
terraform_version: 1.11.4
229+
terraform_version: 1.13.3
230230
- name: Apply the changes
231231
run: |
232232
set -e

.github/workflows/deploy-application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Install terraform
6969
uses: hashicorp/setup-terraform@v3
7070
with:
71-
terraform_version: 1.11.4
71+
terraform_version: 1.13.3
7272
- name: Get terraform output
7373
id: terraform-output
7474
working-directory: terraform/app

.github/workflows/deploy-backup-infrastructure.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Install terraform
4444
uses: hashicorp/setup-terraform@v3
4545
with:
46-
terraform_version: 1.11.4
46+
terraform_version: 1.13.3
4747
- name: Terraform Plan
4848
id: plan
4949
env:
@@ -87,7 +87,7 @@ jobs:
8787
- name: Install terraform
8888
uses: hashicorp/setup-terraform@v3
8989
with:
90-
terraform_version: 1.11.4
90+
terraform_version: 1.13.3
9191
- name: Apply the changes
9292
env:
9393
PERSONAL_ACCESS_TOKEN: ${{ secrets.BACKUP_MODULES_ACCESS_TOKEN }}

.github/workflows/deploy-infrastructure.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- name: Install terraform
7171
uses: hashicorp/setup-terraform@v3
7272
with:
73-
terraform_version: 1.11.4
73+
terraform_version: 1.13.3
7474
- name: Check if any deployments are running
7575
run: ../scripts/check-for-running-deployments.sh ${{ inputs.environment }}
7676
- name: Terraform Plan
@@ -118,7 +118,7 @@ jobs:
118118
- name: Install terraform
119119
uses: hashicorp/setup-terraform@v3
120120
with:
121-
terraform_version: 1.11.4
121+
terraform_version: 1.13.3
122122
- name: Apply the changes
123123
run: |
124124
set -e

.github/workflows/deploy-monitoring.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install terraform
5454
uses: hashicorp/setup-terraform@v3
5555
with:
56-
terraform_version: 1.11.4
56+
terraform_version: 1.13.3
5757
- name: Terraform Plan
5858
id: plan
5959
run: |
@@ -110,7 +110,7 @@ jobs:
110110
- name: Install terraform
111111
uses: hashicorp/setup-terraform@v3
112112
with:
113-
terraform_version: 1.11.4
113+
terraform_version: 1.13.3
114114
- name: Apply AWS changes
115115
run: |
116116
set -e
@@ -140,7 +140,7 @@ jobs:
140140
- name: Install terraform
141141
uses: hashicorp/setup-terraform@v3
142142
with:
143-
terraform_version: 1.11.4
143+
terraform_version: 1.13.3
144144
- name: Install dependencies
145145
run: |
146146
sudo apt-get update

.github/workflows/destroy-infrastructure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Install terraform
4343
uses: hashicorp/setup-terraform@v3
4444
with:
45-
terraform_version: 1.11.4
45+
terraform_version: 1.13.3
4646
- name: Ensure DB cluster can be deleted
4747
run: |
4848
set -e

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,6 @@ jobs:
155155
- uses: actions/checkout@v5
156156
- uses: hashicorp/setup-terraform@v3
157157
with:
158-
terraform_version: 1.11.4
158+
terraform_version: 1.13.3
159159
- run: terraform init -backend=false
160160
- run: terraform validate

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ pkl 0.28.1
55
postgres 17.2
66
redis 8.2.1
77
ruby 3.4.3
8-
terraform 1.11.4
8+
terraform 1.13.3
99
tflint 0.55.1

terraform/account/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = "~> 1.11.4"
2+
required_version = "~> 1.13.3"
33
required_providers {
44
aws = {
55
source = "hashicorp/aws"

terraform/app/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = "~> 1.11.4"
2+
required_version = "~> 1.13.3"
33
required_providers {
44
aws = {
55
source = "hashicorp/aws"

0 commit comments

Comments
 (0)