From d9b604f2593e6f6f23ba2d5c79bba5cbb4ebfa2a Mon Sep 17 00:00:00 2001 From: Patrick Hobusch Date: Thu, 27 Apr 2023 18:17:32 +0800 Subject: [PATCH] Update Terraform to 1.4.6, Terragrunt to 0.45.4, bump AZ CLI --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1de8bb5..d293c74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ -ARG TERRAFORM_VERSION=1.3.9 +ARG TERRAFORM_VERSION=1.4.6 +ARG TERRAGRUNT_VERSION=0.45.4 +ARG AZ_VERSION=2.48.1 FROM hashicorp/terraform:${TERRAFORM_VERSION} @@ -35,14 +37,14 @@ RUN apk add --no-cache \ py3-pip \ python3-dev -ARG AZ_VERSION=2.46.0 +ARG AZ_VERSION RUN pip install --upgrade pip \ && pip install -Iv azure-cli==${AZ_VERSION} ## Install Terragrunt -ARG TERRAGRUNT_VERSION=0.44.5 +ARG TERRAGRUNT_VERSION RUN wget "https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT_VERSION}/terragrunt_linux_amd64" -O /usr/local/bin/terragrunt --no-verbose \ && chmod +x /usr/local/bin/terragrunt