From 731c1e15a6b2fa5f80fff948b8733b4c64a20174 Mon Sep 17 00:00:00 2001 From: Ritika Patil Date: Mon, 19 Feb 2024 12:52:54 -0600 Subject: [PATCH] feat: (IAC-1233) Azure tool version updates --- Dockerfile | 4 ++-- README.md | 4 ++-- container-structure-test.yaml | 4 ++-- versions.tf | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index a43b688b..bce76da5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG TERRAFORM_VERSION=1.6.6 -ARG AZURECLI_VERSION=2.56.0 +ARG TERRAFORM_VERSION=1.7.3 +ARG AZURECLI_VERSION=2.57.0 FROM hashicorp/terraform:$TERRAFORM_VERSION as terraform FROM mcr.microsoft.com/azure-cli:$AZURECLI_VERSION diff --git a/README.md b/README.md index c48ff0a2..85a09e22 100644 --- a/README.md +++ b/README.md @@ -57,10 +57,10 @@ This project supports two options for running Terraform scripts: Access to an **Azure Subscription** and an [**Identity**](./docs/user/TerraformAzureAuthentication.md) with the *Contributor* role are required. #### Terraform Requirements: -- [Terraform](https://www.terraform.io/downloads.html) - v1.6.6 +- [Terraform](https://www.terraform.io/downloads.html) - v1.7.3 - [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.27.9 - [jq](https://stedolan.github.io/jq/) - v1.6 -- [Azure CLI](https://docs.microsoft.com/en-us/cli/azure) - (optional - useful as an alternative to the Azure Portal) - v2.56.0 +- [Azure CLI](https://docs.microsoft.com/en-us/cli/azure) - (optional - useful as an alternative to the Azure Portal) - v2.57.0 #### Docker Requirements: - [Docker](https://docs.docker.com/get-docker/) diff --git a/container-structure-test.yaml b/container-structure-test.yaml index 1cd2c732..23b02380 100644 --- a/container-structure-test.yaml +++ b/container-structure-test.yaml @@ -17,7 +17,7 @@ commandTests: - name: "terraform version" command: "terraform" args: ["--version"] - expectedOutput: ["Terraform v1.6.6"] + expectedOutput: ["Terraform v1.7.3"] - name: "python version" command: "python3" args: ["--version"] @@ -29,7 +29,7 @@ commandTests: - -c - | az version -o tsv - expectedOutput: ["2.56.0\t2.56.0\t1.1.0"] + expectedOutput: ["2.57.0\t2.57.0\t1.1.0"] metadataTest: workdir: "/viya4-iac-azure" diff --git a/versions.tf b/versions.tf index 249f9dbb..cf34f195 100644 --- a/versions.tf +++ b/versions.tf @@ -3,12 +3,12 @@ terraform { - required_version = ">= 1.6.6" + required_version = ">= 1.7.3" required_providers { azurerm = { source = "hashicorp/azurerm" - version = "3.86.0" + version = "3.92.0" } azuread = { source = "hashicorp/azuread"