Skip to content

Commit

Permalink
feat: (IAC-1260) Updated provider plugin versions to remediate securi…
Browse files Browse the repository at this point in the history
…ty vulnerabilities
  • Loading branch information
riragh committed Jan 10, 2024
1 parent 2546e9b commit f76c17a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG TERRAFORM_VERSION=1.6.4
ARG TERRAFORM_VERSION=1.6.6
ARG AZURECLI_VERSION=2.54.0

FROM hashicorp/terraform:$TERRAFORM_VERSION as terraform
Expand Down
2 changes: 1 addition & 1 deletion container-structure-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ commandTests:
- name: "terraform version"
command: "terraform"
args: ["--version"]
expectedOutput: ["Terraform v1.6.4"]
expectedOutput: ["Terraform v1.6.6"]
- name: "python version"
command: "python3"
args: ["--version"]
Expand Down
14 changes: 7 additions & 7 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,40 @@

terraform {

required_version = ">= 1.6.4"
required_version = ">= 1.6.6"

required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.81.0"
version = "3.86.0"
}
azuread = {
source = "hashicorp/azuread"
version = "2.46.0"
version = "2.47.0"
}
external = {
source = "hashicorp/external"
version = "2.3.2"
}
local = {
source = "hashicorp/local"
version = "2.4.0"
version = "2.4.1"
}
null = {
source = "hashicorp/null"
version = "3.2.2"
}
tls = {
source = "hashicorp/tls"
version = "4.0.4"
version = "4.0.5"
}
cloudinit = {
source = "hashicorp/cloudinit"
version = "2.3.2"
version = "2.3.3"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.23.0"
version = "2.25.2"
}
}
}

0 comments on commit f76c17a

Please sign in to comment.