From 01994fa6bb87c8548543486a027d50bc7becd07b Mon Sep 17 00:00:00 2001 From: Rob Morgan Date: Mon, 8 Feb 2021 10:50:03 +0800 Subject: [PATCH 1/2] bump gruntwork-installer version to v0.0.34 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3a6f6802c..7db48bcc6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ env: &env environment: - GRUNTWORK_INSTALLER_VERSION: v0.0.33 + GRUNTWORK_INSTALLER_VERSION: v0.0.34 MODULE_CI_VERSION: v0.29.2 TERRAFORM_VERSION: 0.14.0 TERRAGRUNT_VERSION: v0.24.2 From e65bcdaa578dc6f2dd0e6d68bc81ab80d7e79428 Mon Sep 17 00:00:00 2001 From: Rob Morgan Date: Tue, 9 Feb 2021 16:39:36 +0800 Subject: [PATCH 2/2] change the gcp-helpers to the release version --- .circleci/config.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7db48bcc6..37a728ca9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,6 +2,7 @@ env: &env environment: GRUNTWORK_INSTALLER_VERSION: v0.0.34 MODULE_CI_VERSION: v0.29.2 + MODULE_GCP_CI_VERSION: v0.1.1 TERRAFORM_VERSION: 0.14.0 TERRAGRUNT_VERSION: v0.24.2 PACKER_VERSION: 1.6.6 @@ -35,10 +36,7 @@ install_gruntwork_utils: &install_gruntwork_utils curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-installer.sh | bash /dev/stdin --version "${GRUNTWORK_INSTALLER_VERSION}" gruntwork-install --module-name "gruntwork-module-circleci-helpers" --repo "https://github.com/gruntwork-io/module-ci" --tag "${MODULE_CI_VERSION}" gruntwork-install --module-name "kubernetes-circleci-helpers" --repo "https://github.com/gruntwork-io/module-ci" --tag "${MODULE_CI_VERSION}" - - # TODO: Switch to a release version when https://github.com/gruntwork-io/terraform-google-ci/pull/10 is merged!! - gruntwork-install --module-name "gcp-helpers" --repo "https://github.com/gruntwork-io/terraform-google-ci" --branch "gcp-helpers" - + gruntwork-install --module-name "gcp-helpers" --repo "https://github.com/gruntwork-io/terraform-google-ci" --tag "${MODULE_GCP_CI_VERSION}" configure-environment-for-gruntwork-module \ --terraform-version ${TERRAFORM_VERSION} \ --terragrunt-version ${TERRAGRUNT_VERSION} \