Skip to content

Commit e9d36a5

Browse files
authored
feat: (IAC-1260) Update Dependencies to remediate security vulnerabilities (#358)
1 parent 2546e9b commit e9d36a5

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG TERRAFORM_VERSION=1.6.4
2-
ARG AZURECLI_VERSION=2.54.0
1+
ARG TERRAFORM_VERSION=1.6.6
2+
ARG AZURECLI_VERSION=2.56.0
33

44
FROM hashicorp/terraform:$TERRAFORM_VERSION as terraform
55
FROM mcr.microsoft.com/azure-cli:$AZURECLI_VERSION

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ 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.6.4
60+
- [Terraform](https://www.terraform.io/downloads.html) - v1.6.6
6161
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.27.9
6262
- [jq](https://stedolan.github.io/jq/) - v1.6
63-
- [Azure CLI](https://docs.microsoft.com/en-us/cli/azure) - (optional - useful as an alternative to the Azure Portal) - v2.54.0
63+
- [Azure CLI](https://docs.microsoft.com/en-us/cli/azure) - (optional - useful as an alternative to the Azure Portal) - v2.56.0
6464

6565
#### Docker Requirements:
6666
- [Docker](https://docs.docker.com/get-docker/)

container-structure-test.yaml

Lines changed: 2 additions & 2 deletions
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.6.4"]
20+
expectedOutput: ["Terraform v1.6.6"]
2121
- name: "python version"
2222
command: "python3"
2323
args: ["--version"]
@@ -29,7 +29,7 @@ commandTests:
2929
- -c
3030
- |
3131
az version -o tsv
32-
expectedOutput: ["2.54.0\t2.54.0\t1.1.0"]
32+
expectedOutput: ["2.56.0\t2.56.0\t1.1.0"]
3333

3434
metadataTest:
3535
workdir: "/viya4-iac-azure"

versions.tf

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,40 @@
33

44
terraform {
55

6-
required_version = ">= 1.6.4"
6+
required_version = ">= 1.6.6"
77

88
required_providers {
99
azurerm = {
1010
source = "hashicorp/azurerm"
11-
version = "3.81.0"
11+
version = "3.86.0"
1212
}
1313
azuread = {
1414
source = "hashicorp/azuread"
15-
version = "2.46.0"
15+
version = "~>2.47"
1616
}
1717
external = {
1818
source = "hashicorp/external"
19-
version = "2.3.2"
19+
version = "~>2.3"
2020
}
2121
local = {
2222
source = "hashicorp/local"
23-
version = "2.4.0"
23+
version = "~>2.4"
2424
}
2525
null = {
2626
source = "hashicorp/null"
27-
version = "3.2.2"
27+
version = "~>3.2"
2828
}
2929
tls = {
3030
source = "hashicorp/tls"
31-
version = "4.0.4"
31+
version = "~>4.0"
3232
}
3333
cloudinit = {
3434
source = "hashicorp/cloudinit"
35-
version = "2.3.2"
35+
version = "~>2.3"
3636
}
3737
kubernetes = {
3838
source = "hashicorp/kubernetes"
39-
version = "2.23.0"
39+
version = "~>2.25"
4040
}
4141
}
4242
}

0 commit comments

Comments
 (0)