From c6fc74f08a79a718abf1367f2a051e5015595fbf Mon Sep 17 00:00:00 2001 From: Bryant Biggs Date: Mon, 7 Oct 2024 20:33:11 -0500 Subject: [PATCH] docs: Correct reference module implementation names to be unique in v20 upgrade guide --- .pre-commit-config.yaml | 2 +- docs/UPGRADE-20.0.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 55b241248d..48e324bc8d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -24,7 +24,7 @@ repos: - '--args=--only=terraform_unused_required_providers' - id: terraform_validate - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: check-merge-conflict - id: end-of-file-fixer diff --git a/docs/UPGRADE-20.0.md b/docs/UPGRADE-20.0.md index 6f53e326c2..c93a031ee9 100644 --- a/docs/UPGRADE-20.0.md +++ b/docs/UPGRADE-20.0.md @@ -170,7 +170,7 @@ To give users advanced notice and provide some future direction for this module, - ] } -+ module "eks" { ++ module "eks_aws_auth" { + source = "terraform-aws-modules/eks/aws//modules/aws-auth" + version = "~> 20.0" @@ -197,7 +197,7 @@ To give users advanced notice and provide some future direction for this module, ### Karpenter Diff of Before (v19.21) vs After (v20.0) ```diff - module "eks" { + module "eks_karpenter" { source = "terraform-aws-modules/eks/aws//modules/karpenter" - version = "~> 19.21" + version = "~> 20.0"