From 9eff19f3e0ec4e876dad48b9ccf19867aa30d980 Mon Sep 17 00:00:00 2001 From: Patrick Veverka Date: Thu, 31 Oct 2019 15:55:08 -0400 Subject: [PATCH 1/3] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 071a757dd..c19984ebd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,7 +21,7 @@ jobs: # We do this instead of setting --default-tf-version because setting # that flag starts the download asynchronously so we'd have a race # condition. - TERRAFORM_VERSION: 0.12.12 + TERRAFORM_VERSION: 0.12.13 steps: - checkout - run: make build-service From 24e8cd4785b4b6f48066d00a22302c63eb23c305 Mon Sep 17 00:00:00 2001 From: Patrick Veverka Date: Thu, 31 Oct 2019 15:55:30 -0400 Subject: [PATCH 2/3] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bdc4d4562..5a690e82e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM runatlantis/atlantis-base:v3.1 LABEL authors="Anubhav Mishra, Luke Kysow" # install terraform binaries -ENV DEFAULT_TERRAFORM_VERSION=0.12.12 +ENV DEFAULT_TERRAFORM_VERSION=0.12.13 # In the official Atlantis image we only have the latest of each Terrafrom version. RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8 0.11.14 ${DEFAULT_TERRAFORM_VERSION}" && \ From 3889c1abaf4a3e98ef2db8d0f6a0fc2b31874cc9 Mon Sep 17 00:00:00 2001 From: Patrick Veverka Date: Thu, 31 Oct 2019 15:55:49 -0400 Subject: [PATCH 3/3] Update Dockerfile --- testing/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/Dockerfile b/testing/Dockerfile index 8105e7bc7..18d4f44f9 100644 --- a/testing/Dockerfile +++ b/testing/Dockerfile @@ -5,7 +5,7 @@ FROM circleci/golang:1.13 # Install Terraform -ENV TERRAFORM_VERSION=0.12.12 +ENV TERRAFORM_VERSION=0.12.13 RUN curl -LOks https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \ sudo mkdir -p /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \ sudo unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \