Skip to content

Commit 670aa8a

Browse files
authored
docs: Correct reference module implementation names to be unique in v20 upgrade guide (#3174)
1 parent d2c671a commit 670aa8a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repos:
2424
- '--args=--only=terraform_unused_required_providers'
2525
- id: terraform_validate
2626
- repo: https://github.com/pre-commit/pre-commit-hooks
27-
rev: v4.6.0
27+
rev: v5.0.0
2828
hooks:
2929
- id: check-merge-conflict
3030
- id: end-of-file-fixer

docs/UPGRADE-20.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ To give users advanced notice and provide some future direction for this module,
170170
- ]
171171
}
172172

173-
+ module "eks" {
173+
+ module "eks_aws_auth" {
174174
+ source = "terraform-aws-modules/eks/aws//modules/aws-auth"
175175
+ version = "~> 20.0"
176176

@@ -197,7 +197,7 @@ To give users advanced notice and provide some future direction for this module,
197197
### Karpenter Diff of Before (v19.21) vs After (v20.0)
198198

199199
```diff
200-
module "eks" {
200+
module "eks_karpenter" {
201201
source = "terraform-aws-modules/eks/aws//modules/karpenter"
202202
- version = "~> 19.21"
203203
+ version = "~> 20.0"

0 commit comments

Comments
 (0)