From 8acaa3eac40f06adb186c867540cb5ad0da6a12b Mon Sep 17 00:00:00 2001 From: Jacob McCann Date: Wed, 7 Feb 2018 13:11:17 -0600 Subject: [PATCH] Version 4.0-0.11.3 Update embedded terraform to 0.11.3 --- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a570693..48bb624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.0-0.11.3 (2018-02-07) +* Pass `-var-file` to validate command +* Update embedded TF to `0.11.3` + ## 4.0-0.10.8 (2018-02-07) * Pass `-var-file` to validate command * Update embedded TF to `0.10.8` diff --git a/Dockerfile b/Dockerfile index 7d51ed3..28ef66c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN apk -U add \ wget && \ rm -rf /var/cache/apk/* -ENV TERRAFORM_VERSION 0.10.8 +ENV TERRAFORM_VERSION 0.11.3 RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -O terraform.zip && \ unzip terraform.zip -d /bin && \ rm -f terraform.zip