From 80d9e830117c32a98d1c36993be6ac0bb7b45e32 Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Tue, 13 Apr 2021 11:56:41 +0100 Subject: [PATCH 01/10] Create initial guide --- ...1-04-13-how-to-update-to-terraform-14.adoc | 213 ++++++++++++++++++ 1 file changed, 213 insertions(+) create mode 100644 _posts/2021-04-13-how-to-update-to-terraform-14.adoc diff --git a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc new file mode 100644 index 000000000..fe98cda47 --- /dev/null +++ b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc @@ -0,0 +1,213 @@ +--- +title: How to update to Terraform 14 +categories: Upgrades +image: /assets/img/guides/refresh_icon.png +excerpt: Learn how to update your infrastructure code that depends on the Gruntwork Infrastructure as Code Library to Terraform 0.14. +tags: ["aws", "terraform", "terragrunt"] +cloud: ["aws"] +redirect_from: /static/guides/upgrades/how-to-update-to-terraform-14/ +--- +:page-type: guide +:page-layout: post + +:toc: +:toc-placement!: + +// GitHub specific settings. See https://gist.github.com/dcode/0cfbf2699a1fe9b46ff04c41721dda74 for details. +ifdef::env-github[] +:tip-caption: :bulb: +:note-caption: :information_source: +:important-caption: :heavy_exclamation_mark: +:caution-caption: :fire: +:warning-caption: :warning: +toc::[] +endif::[] + +== Intro + +This guide will walk you through how to update any code that depends on the +https://gruntwork.io/infrastructure-as-code-library/[Gruntwork Infrastructure as Code Library] to +https://www.terraform.io/upgrade-guides/0-14.html[Terraform 0.14]. Terraform 0.14 introduces several new features +and fixes, but it also has a number of backwards incompatibilities that have to be incorporated into your codebase. + +=== What you'll learn in this guide + +This guide consists of two main sections: + +<>:: + An overview of Terraform 0.14 and why it is important to update your code for compatibility. + +<>:: + The steps you need to take to update your code relying on the Gruntwork Infrastructure as Code library to work with + Terraform 0.14. Includes a + <> you can use as a reference to know which Gruntwork Repo version + tag is compatible with Terraform 0.14. + + +[[core_concepts]] +== Core Concepts + +=== Background + +https://www.hashicorp.com/blog/announcing-hashicorp-terraform-0-14-general-availability[Terraform 0.14 was released on +December 02, 2020]. Some of the major new features in 0.14 include: + +. Consise diff output in `plan`. +. The ability to mark input variables as `sensitive`. +. A lock file for provider dependency versions. + +For more info, check out the +https://www.hashicorp.com/blog/announcing-hashicorp-terraform-0-14-general-availability[announcement blog post]. + +0.14 is a major new release for Terraform, which means it includes some backwards incompatible changes. We have +gone through all the Terraform modules in the https://gruntwork.io/infrastructure-as-code-library/[Gruntwork +Infrastructure as Code Library] and updated them to work with Terraform 0.14. In order to use 0.14, you will need to +update to these new versions and make other changes to your code, as described in the following section. + + + +[[deployment_walkthrough]] +== Deployment walkthrough + +=== Step 1: update your code to be compatible with Terraform 0.13 + +If you haven't already, you need to: + +. Update your code to work with Terraform 0.13. Do NOT skip from, say, 0.11, straight to 0.14. You MUST update to + 0.13.0 or above first! If you're still on Terraform 0.11 or older, see our + https://docs.gruntwork.io/guides/upgrading-to-tf12-tg19/[Terraform 0.12 upgrade guide] for instructions. If you're + still on Terraform 0.12, see our https://gruntwork.io/guides/upgrades/how-to-update-to-terraform-13/[Terraform 0.13 + upgrade guide]. +. Update all your Gruntwork modules to the latest versions just _before_ the TF 0.14 versions in the compatibility + table below. The upgrade will be much easier and less error prone if you keep the number of version jumps as small + as possible. + +=== Step 2: update your code to be compatible with Terraform 0.14 + +The first step is to update your own code (e.g., the code that lives in your `infrastructure-modules` repo) to be +compatible with Terraform 0.14 by following HashiCorp's https://www.terraform.io/upgrade-guides/0-14.html[Terraform 0.14 +Upgrade Guide]. + +=== Step 3: update references to the Gruntwork Infrastructure as Code Library + +In order to take advantage of the Terraform 0.14, you need to update your references to the Gruntwork +Infrastructure as Code Library to use a compatible version. We (Gruntwork) have gone through all our modules in the +library to test and update the code to be compatible with Terraform 0.14. As a customer, you need to update to +the proper versions of the Gruntwork library to pick up the fixes/changes that we made to be compatible. Refer to +https://gruntwork.io/guides/foundations/how-to-use-gruntwork-infrastructure-as-code-library/#updating[the +"Updating" section of "How to use the Gruntwork Infrastructure as Code Library"] for instructions on how to update the +versions in your code. + +For the vast majority of the repos, the only change that will be necessary is a version number bump, but several repos +require more extensive code changes and state migrations. To upgrade without downtime and data loss, **you MUST follow +the migration instructions in the release notes in each repo to know what changes need to be made to update to the new +version.** + +[.exceptional] +IMPORTANT: Gruntwork follows +https://gruntwork.io/guides/foundations/how-to-use-gruntwork-infrastructure-as-code-library/#versioning[semantic +versioning]. For any pre-1.0 modules, this means that version updates to the minor version are considered backwards +incompatible releases for any version updates prior to 1.0.0 release. Make sure to read the release notes for the +relevant modules any time you are updating minor versions! Note that you will want to read the release notes for each +minor version that is updated (e.g., if you are going from v0.5.x to v0.9.x, you will want to read the notes for v0.6.0, +v0.7.0, v0.8.0, and v0.9.0 to get the full list of backwards incompatible updates). + +The following table provides a summary of all the relevant Gruntwork AWS modules and the respective versions that are +compatible with Terraform 0.14: + +[[compatibility_table]] +[cols="1,1h"] +|=== +|Gruntwork Repo |Minimum version with Terraform 0.14 support + +|Terratest +|https://github.com/gruntwork-io/terratest/releases/tag/v0.30.0[v0.30.0] + +|Terragrunt +|https://github.com/gruntwork-io/terragrunt/releases/tag/v0.25.4[v0.25.4] + +|package-terraform-utilities +|https://github.com/gruntwork-io/package-terraform-utilities/releases/tag/v0.3.0[v0.3.0] + +|terraform-aws-vpc +|https://github.com/gruntwork-io/terraform-aws-vpc/releases/tag/v0.10.0[v0.10.0] + +|module-asg +|https://github.com/gruntwork-io/module-asg/releases/tag/v0.11.0[v0.11.0] + +|module-server +|https://github.com/gruntwork-io/module-server/releases/tag/v0.9.0[v0.9.0] + +|package-lambda +|https://github.com/gruntwork-io/package-lambda/releases/tag/v0.9.0[v0.9.0] + +|module-security +|https://github.com/gruntwork-io/module-security/releases/tag/v0.37.0[v0.37.0] + +|module-load-balancer +|https://github.com/gruntwork-io/module-load-balancer/releases/tag/v0.21.0[v0.21.0] + +|module-data-storage +|https://github.com/gruntwork-io/module-data-storage/releases/tag/v0.16.0[v0.16.0] + +|module-cache +|https://github.com/gruntwork-io/module-cache/releases/tag/v0.10.0[v0.10.0] + +|package-messaging +|https://github.com/gruntwork-io/package-messaging/releases/tag/v0.4.0[v0.4.0] + +|package-static-assets +|https://github.com/gruntwork-io/package-static-assets/releases/tag/v0.7.0[v0.7.0] + +|terraform-aws-monitoring +|https://github.com/gruntwork-io/terraform-aws-monitoring/releases/tag/v0.23.0[v0.23.0] + +|package-openvpn +|https://github.com/gruntwork-io/package-openvpn/releases/tag/v0.12.0[v0.12.0] + +|module-ecs +|https://github.com/gruntwork-io/module-ecs/releases/tag/v0.23.0[v0.23.0] + +|module-ci +|https://github.com/gruntwork-io/module-ci/releases/tag/v0.29.0[v0.29.0] + +|terraform-aws-eks +|https://github.com/gruntwork-io/terraform-aws-eks/releases/tag/v0.30.0[v0.30.0] + +|package-zookeeper +|https://github.com/gruntwork-io/package-zookeeper/releases/tag/v0.7.0[v0.7.0] + +|package-kafka +|https://github.com/gruntwork-io/package-kafka/releases/tag/v0.7.0[v0.7.0] + +|package-elk +|https://github.com/gruntwork-io/package-elk/releases/tag/v0.7.0[v0.7.0] + +|terraform-kubernetes-helm +|Deprecated. Migrate to `terraform-kubernetes-namespace` instead. + +|terraform-kubernetes-namespace +|https://github.com/gruntwork-io/terraform-kubernetes-namespace/releases/tag/v0.1.0[v0.1.0] + +|cis-compliance-aws +|https://github.com/gruntwork-io/cis-compliance-aws/releases/tag/v0.9.0[v0.9.0] + +|package-sam +|https://github.com/gruntwork-io/package-sam/releases/tag/v0.3.0[v0.3.0] + +|terraform-aws-couchbase +|https://github.com/gruntwork-io/terraform-aws-couchbase/releases/tag/v0.4.0[v0.4.0] + +|terraform-aws-influx +|https://github.com/gruntwork-io/terraform-aws-influx/releases/tag/v0.2.0[v0.2.0] + +|terraform-aws-consul +|https://github.com/hashicorp/terraform-aws-consul/releases/tag/v0.8.0[v0.8.0] + +|terraform-aws-vault +|https://github.com/hashicorp/terraform-aws-vault/releases/tag/v0.14.0[v0.14.0] + +|terraform-aws-nomad +|https://github.com/hashicorp/terraform-aws-nomad/releases/tag/v0.7.0[v0.7.0] + +|=== From 631117cfaac45dab5c45806c53836671f02129c7 Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Tue, 13 Apr 2021 12:01:43 +0100 Subject: [PATCH 02/10] Fill in version numbers known so far --- ...1-04-13-how-to-update-to-terraform-14.adoc | 106 +++++++++--------- 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc index fe98cda47..a4423caa1 100644 --- a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc +++ b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc @@ -121,93 +121,93 @@ compatible with Terraform 0.14: |Gruntwork Repo |Minimum version with Terraform 0.14 support |Terratest -|https://github.com/gruntwork-io/terratest/releases/tag/v0.30.0[v0.30.0] +|https://github.com/gruntwork-io/terratest/releases/tag/v0.31.1[v0.31.1] |Terragrunt -|https://github.com/gruntwork-io/terragrunt/releases/tag/v0.25.4[v0.25.4] +|https://github.com/gruntwork-io/terragrunt/releases/tag/v0.27.0[v0.27.0] -|package-terraform-utilities -|https://github.com/gruntwork-io/package-terraform-utilities/releases/tag/v0.3.0[v0.3.0] +|terraform-aws-utilities +|https://github.com/gruntwork-io/terraform-aws-utilities/releases/tag/v0.4.0[v0.4.0] |terraform-aws-vpc -|https://github.com/gruntwork-io/terraform-aws-vpc/releases/tag/v0.10.0[v0.10.0] +|https://github.com/gruntwork-io/terraform-aws-vpc/releases/tag/v0.14.0[v0.14.0] -|module-asg -|https://github.com/gruntwork-io/module-asg/releases/tag/v0.11.0[v0.11.0] +|terraform-aws-asg +|https://github.com/gruntwork-io/terraform-aws-asg/releases/tag/v0.12.0[v0.12.0] -|module-server -|https://github.com/gruntwork-io/module-server/releases/tag/v0.9.0[v0.9.0] +|terraform-aws-server +|https://github.com/gruntwork-io/terraform-aws-server/releases/tag/v0.11.0[v0.11.0] -|package-lambda -|https://github.com/gruntwork-io/package-lambda/releases/tag/v0.9.0[v0.9.0] +|terraform-aws-lambda +|https://github.com/gruntwork-io/terraform-aws-lambda/releases/tag/v0.10.0[v0.10.0] -|module-security -|https://github.com/gruntwork-io/module-security/releases/tag/v0.37.0[v0.37.0] +|terraform-aws-security +|https://github.com/gruntwork-io/terraform-aws-security/releases/tag/v0.46.0[v0.46.0] -|module-load-balancer -|https://github.com/gruntwork-io/module-load-balancer/releases/tag/v0.21.0[v0.21.0] +|terraform-aws-load-balancer +|https://github.com/gruntwork-io/terraform-aws-load-balancer/releases/tag/v0.22.0[v0.22.0] -|module-data-storage -|https://github.com/gruntwork-io/module-data-storage/releases/tag/v0.16.0[v0.16.0] +|terraform-aws-data-storage +|https://github.com/gruntwork-io/terraform-aws-data-storage/releases/tag/v0.18.0[v0.18.0] -|module-cache -|https://github.com/gruntwork-io/module-cache/releases/tag/v0.10.0[v0.10.0] +|terraform-aws-cache +|https://github.com/gruntwork-io/terraform-aws-cache/releases/tag/v0.13.0[v0.13.0] -|package-messaging -|https://github.com/gruntwork-io/package-messaging/releases/tag/v0.4.0[v0.4.0] +|terraform-aws-messaging +|https://github.com/gruntwork-io/terraform-aws-messaging/releases/tag/v0.5.0[v0.5.0] -|package-static-assets -|https://github.com/gruntwork-io/package-static-assets/releases/tag/v0.7.0[v0.7.0] +|terraform-aws-static-assets +|https://github.com/gruntwork-io/terraform-aws-static-assets/releases/tag/v0.8.0[v0.8.0] |terraform-aws-monitoring -|https://github.com/gruntwork-io/terraform-aws-monitoring/releases/tag/v0.23.0[v0.23.0] +|https://github.com/gruntwork-io/terraform-aws-monitoring/releases/tag/v0.25.0[v0.25.0] -|package-openvpn -|https://github.com/gruntwork-io/package-openvpn/releases/tag/v0.12.0[v0.12.0] +|terraform-aws-openvpn +|https://github.com/gruntwork-io/terraform-aws-openvpn/releases/tag/v0.14.0[v0.14.0] -|module-ecs -|https://github.com/gruntwork-io/module-ecs/releases/tag/v0.23.0[v0.23.0] +|terraform-aws-ecs +|https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.28.0[v0.28.0] -|module-ci -|https://github.com/gruntwork-io/module-ci/releases/tag/v0.29.0[v0.29.0] +|terraform-aws-ci +|https://github.com/gruntwork-io/terraform-aws-ci/releases/tag/v0.32.0[v0.32.0] |terraform-aws-eks -|https://github.com/gruntwork-io/terraform-aws-eks/releases/tag/v0.30.0[v0.30.0] +|https://github.com/gruntwork-io/terraform-aws-eks/releases/tag/TBD[TBD] -|package-zookeeper -|https://github.com/gruntwork-io/package-zookeeper/releases/tag/v0.7.0[v0.7.0] +|terraform-aws-zookeeper +|https://github.com/gruntwork-io/terraform-aws-zookeeper/releases/tag/v0.9.0[v0.9.0] -|package-kafka -|https://github.com/gruntwork-io/package-kafka/releases/tag/v0.7.0[v0.7.0] +|terraform-aws-kafka +|https://github.com/gruntwork-io/terraform-aws-kafka/releases/tag/v0.8.0[v0.8.0] -|package-elk -|https://github.com/gruntwork-io/package-elk/releases/tag/v0.7.0[v0.7.0] - -|terraform-kubernetes-helm -|Deprecated. Migrate to `terraform-kubernetes-namespace` instead. +|terraform-aws-elk +|https://github.com/gruntwork-io/terraform-aws-elk/releases/tag/v0.8.0[v0.8.0] |terraform-kubernetes-namespace -|https://github.com/gruntwork-io/terraform-kubernetes-namespace/releases/tag/v0.1.0[v0.1.0] +|https://github.com/gruntwork-io/terraform-kubernetes-namespace/releases/tag/v0.2.0[v0.2.0] -|cis-compliance-aws -|https://github.com/gruntwork-io/cis-compliance-aws/releases/tag/v0.9.0[v0.9.0] +|terraform-aws-cis-service-catalog +|https://github.com/gruntwork-io/terraform-aws-cis-service-catalog/releases/tag/TBD[TBD] -|package-sam -|https://github.com/gruntwork-io/package-sam/releases/tag/v0.3.0[v0.3.0] +|terraform-aws-sam +|https://github.com/gruntwork-io/terraform-aws-sam/releases/tag/v0.4.0[v0.4.0] |terraform-aws-couchbase -|https://github.com/gruntwork-io/terraform-aws-couchbase/releases/tag/v0.4.0[v0.4.0] +|https://github.com/gruntwork-io/terraform-aws-couchbase/releases/tag/v0.5.0[v0.5.0] -|terraform-aws-influx -|https://github.com/gruntwork-io/terraform-aws-influx/releases/tag/v0.2.0[v0.2.0] +|terraform-aws-vault +|https://github.com/hashicorp/terraform-aws-vault/releases/tag/v0.15.0[v0.15.0] |terraform-aws-consul -|https://github.com/hashicorp/terraform-aws-consul/releases/tag/v0.8.0[v0.8.0] - -|terraform-aws-vault -|https://github.com/hashicorp/terraform-aws-vault/releases/tag/v0.14.0[v0.14.0] +|https://github.com/hashicorp/terraform-aws-consul/releases/tag/v0.9.0[v0.9.0] |terraform-aws-nomad -|https://github.com/hashicorp/terraform-aws-nomad/releases/tag/v0.7.0[v0.7.0] +|https://github.com/hashicorp/terraform-aws-nomad/releases/tag/TBD[TBD] + +|terraform-aws-architecture-catalog +|https://github.com/gruntwork-io/terraform-aws-architecture-catalog/releases/tag/TBD[TBD] + +|terraform-aws-service-catalog +|https://github.com/gruntwork-io/terraform-aws-service-catalog/releases/tag/TBD[TBD] |=== From 8e0857641709fb232c38c7787fd8651b3ca9e98b Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Tue, 13 Apr 2021 12:06:07 +0100 Subject: [PATCH 03/10] Fill in version number for Nomad --- _posts/2021-04-13-how-to-update-to-terraform-14.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc index a4423caa1..6a6ddeaca 100644 --- a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc +++ b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc @@ -202,7 +202,7 @@ compatible with Terraform 0.14: |https://github.com/hashicorp/terraform-aws-consul/releases/tag/v0.9.0[v0.9.0] |terraform-aws-nomad -|https://github.com/hashicorp/terraform-aws-nomad/releases/tag/TBD[TBD] +|https://github.com/hashicorp/terraform-aws-nomad/releases/tag/v0.8.0[v0.8.0] |terraform-aws-architecture-catalog |https://github.com/gruntwork-io/terraform-aws-architecture-catalog/releases/tag/TBD[TBD] From 4e8483df59da7cc5d29802451872609d5d71753c Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Tue, 13 Apr 2021 12:15:06 +0100 Subject: [PATCH 04/10] Add note on lock files --- .../2021-04-13-how-to-update-to-terraform-14.adoc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc index 6a6ddeaca..85dd49862 100644 --- a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc +++ b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc @@ -211,3 +211,17 @@ compatible with Terraform 0.14: |https://github.com/gruntwork-io/terraform-aws-service-catalog/releases/tag/TBD[TBD] |=== + +=== Step 4: start using lock files + +One of the big new features in Terraform 0.14 is the lock file for provider dependencies. The next time you run `init` +with Terraform 0.14, it will create a `.terraform.lock.hcl` file that locks you to specific versions of all the +providers you're using. We recommend checking the `.terraform.lock.hcl` files into version control so that all your +team members get the _exact_ same provider versions when they run `init`. + +Note that we've updated Terragrunt (as of https://github.com/gruntwork-io/terragrunt/releases/tag/v0.27.0[v0.27.0]) to +work with lock files too. When you run `terragrunt init`, or when +https://terragrunt.gruntwork.io/docs/features/auto-init/[Auto Init] runs as part of some other command, Terragrunt will +automatically copy the `.terraform.lock.hcl` file right next to your `terragrunt.hcl` file, making it easy to commit it +to version control. + From 2c421a138e45cf491aad72ecb61454c3985723d1 Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Tue, 13 Apr 2021 13:02:28 +0100 Subject: [PATCH 05/10] Fill in CIS service catalog version --- _posts/2021-04-13-how-to-update-to-terraform-14.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc index 85dd49862..0b4d6d130 100644 --- a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc +++ b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc @@ -187,7 +187,7 @@ compatible with Terraform 0.14: |https://github.com/gruntwork-io/terraform-kubernetes-namespace/releases/tag/v0.2.0[v0.2.0] |terraform-aws-cis-service-catalog -|https://github.com/gruntwork-io/terraform-aws-cis-service-catalog/releases/tag/TBD[TBD] +|https://github.com/gruntwork-io/terraform-aws-cis-service-catalog/releases/tag/v0.16.0[v0.16.0] |terraform-aws-sam |https://github.com/gruntwork-io/terraform-aws-sam/releases/tag/v0.4.0[v0.4.0] From 005fb296b8155596a7846ac51961e797e76e6a74 Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Wed, 14 Apr 2021 11:06:18 +0100 Subject: [PATCH 06/10] Fill in service catalog version --- _posts/2021-04-13-how-to-update-to-terraform-14.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc index 0b4d6d130..c5027391e 100644 --- a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc +++ b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc @@ -208,7 +208,7 @@ compatible with Terraform 0.14: |https://github.com/gruntwork-io/terraform-aws-architecture-catalog/releases/tag/TBD[TBD] |terraform-aws-service-catalog -|https://github.com/gruntwork-io/terraform-aws-service-catalog/releases/tag/TBD[TBD] +|https://github.com/gruntwork-io/terraform-aws-service-catalog/releases/tag/v0.31.0[v0.31.0] |=== From 46a484e743c516fc397c8baf05b6cf81e9dfe723 Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Thu, 15 Apr 2021 13:37:58 +0100 Subject: [PATCH 07/10] Fill in EKS version --- _posts/2021-04-13-how-to-update-to-terraform-14.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc index c5027391e..17e39c36a 100644 --- a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc +++ b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc @@ -172,7 +172,7 @@ compatible with Terraform 0.14: |https://github.com/gruntwork-io/terraform-aws-ci/releases/tag/v0.32.0[v0.32.0] |terraform-aws-eks -|https://github.com/gruntwork-io/terraform-aws-eks/releases/tag/TBD[TBD] +|https://github.com/gruntwork-io/terraform-aws-eks/releases/tag/v0.40.0[v0.40.0] |terraform-aws-zookeeper |https://github.com/gruntwork-io/terraform-aws-zookeeper/releases/tag/v0.9.0[v0.9.0] From 7b5d59fa51d1ef976c826adf126fb31e0f9b3630 Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Thu, 15 Apr 2021 13:39:22 +0100 Subject: [PATCH 08/10] Fix EKS version --- _posts/2021-04-13-how-to-update-to-terraform-14.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc index 17e39c36a..c808b186e 100644 --- a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc +++ b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc @@ -172,7 +172,7 @@ compatible with Terraform 0.14: |https://github.com/gruntwork-io/terraform-aws-ci/releases/tag/v0.32.0[v0.32.0] |terraform-aws-eks -|https://github.com/gruntwork-io/terraform-aws-eks/releases/tag/v0.40.0[v0.40.0] +|https://github.com/gruntwork-io/terraform-aws-eks/releases/tag/v0.36.0[v0.36.0] |terraform-aws-zookeeper |https://github.com/gruntwork-io/terraform-aws-zookeeper/releases/tag/v0.9.0[v0.9.0] From 5577443f32aa06b45db6d660008363455b450e96 Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Thu, 15 Apr 2021 16:08:16 +0100 Subject: [PATCH 09/10] Bump service catalog version --- _posts/2021-04-13-how-to-update-to-terraform-14.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc index c808b186e..30681f12f 100644 --- a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc +++ b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc @@ -208,7 +208,7 @@ compatible with Terraform 0.14: |https://github.com/gruntwork-io/terraform-aws-architecture-catalog/releases/tag/TBD[TBD] |terraform-aws-service-catalog -|https://github.com/gruntwork-io/terraform-aws-service-catalog/releases/tag/v0.31.0[v0.31.0] +|https://github.com/gruntwork-io/terraform-aws-service-catalog/releases/tag/v0.34.0[v0.34.0] |=== From d939063d5455f20a5a1aa295ebea6803f20cd0fd Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Fri, 16 Apr 2021 13:53:53 +0100 Subject: [PATCH 10/10] Update Service and Arch Catalog versions --- _posts/2021-04-13-how-to-update-to-terraform-14.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc index 30681f12f..442b86108 100644 --- a/_posts/2021-04-13-how-to-update-to-terraform-14.adoc +++ b/_posts/2021-04-13-how-to-update-to-terraform-14.adoc @@ -205,10 +205,10 @@ compatible with Terraform 0.14: |https://github.com/hashicorp/terraform-aws-nomad/releases/tag/v0.8.0[v0.8.0] |terraform-aws-architecture-catalog -|https://github.com/gruntwork-io/terraform-aws-architecture-catalog/releases/tag/TBD[TBD] +|https://github.com/gruntwork-io/terraform-aws-architecture-catalog/releases/tag/v0.0.5[v0.0.5] |terraform-aws-service-catalog -|https://github.com/gruntwork-io/terraform-aws-service-catalog/releases/tag/v0.34.0[v0.34.0] +|https://github.com/gruntwork-io/terraform-aws-service-catalog/releases/tag/v0.34.1[v0.34.1] |===