Skip to content

Commit bbda930

Browse files
authored
feat: (IAC-1436) Updated terraform version to fix security vulnerability (#382)
1 parent 7ce32d8 commit bbda930

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG TERRAFORM_VERSION=1.7.3
1+
ARG TERRAFORM_VERSION=1.8.2
22
ARG AZURECLI_VERSION=2.59.0
33

44
FROM hashicorp/terraform:$TERRAFORM_VERSION as terraform

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ This project supports two options for running Terraform scripts:
5757
Access to an **Azure Subscription** and an [**Identity**](./docs/user/TerraformAzureAuthentication.md) with the *Contributor* role are required.
5858

5959
#### Terraform Requirements:
60-
- [Terraform](https://www.terraform.io/downloads.html) - v1.7.3
60+
- [Terraform](https://www.terraform.io/downloads.html) - v1.8.2
6161
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.28.7
6262
- [jq](https://stedolan.github.io/jq/) - v1.6
6363
- [Azure CLI](https://docs.microsoft.com/en-us/cli/azure) - (optional - useful as an alternative to the Azure Portal) - v2.59.0

container-structure-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ commandTests:
1717
- name: "terraform version"
1818
command: "terraform"
1919
args: ["--version"]
20-
expectedOutput: ["Terraform v1.7.3"]
20+
expectedOutput: ["Terraform v1.8.2"]
2121
- name: "python version"
2222
command: "python3"
2323
args: ["--version"]

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
terraform {
55

6-
required_version = ">= 1.7.3"
6+
required_version = ">= 1.8.0"
77

88
required_providers {
99
azurerm = {

0 commit comments

Comments
 (0)