Skip to content

Commit

Permalink
docs: Correct reference module implementation names to be unique in v…
Browse files Browse the repository at this point in the history
…20 upgrade guide (#3174)
  • Loading branch information
bryantbiggs authored Oct 8, 2024
1 parent d2c671a commit 670aa8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/UPGRADE-20.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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"
Expand Down

0 comments on commit 670aa8a

Please sign in to comment.