From b85cc74803dc9d63a91b54f4f8d95efaa3c01253 Mon Sep 17 00:00:00 2001 From: Damian Szlawski Date: Wed, 11 Jan 2023 21:20:33 +0100 Subject: [PATCH] Upgraded terraform to 1.3.7 --- CHANGELOG.md | 8 ++++++++ Dockerfile | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0ea39f..208cc1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [10.7.0] - 2023-01-11 +### Changed +- Upgraded terraform to 1.3.7 + +## [10.6.0] - 2022-09-08 +### Changed +- Upgraded terraform to 1.2.9 + ## [10.5.0] - 2022-02-04 ### Changed - Upgraded terraform to 1.1.5 diff --git a/Dockerfile b/Dockerfile index 4dc0adb..0987e78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN curl -L -o /tmp/terraform-docs.tar.gz https://github.com/terraform-docs/terr mv /tmp/terraform-docs /usr/local/bin/ && \ rm -rf /tmp/* -ARG TERRAFORM_VERSION=1.2.9 +ARG TERRAFORM_VERSION=1.3.7 RUN curl -L -o /tmp/terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \ unzip /tmp/terraform.zip -d /tmp/ && \ mv /tmp/terraform /usr/local/bin/terraform && \