Skip to content

Commit 76b9b75

Browse files
authored
chore(docs): add registry_project_id to upgrade doc (#834)
1 parent 83eae98 commit 76b9b75

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

docs/upgrading_to_v14.0.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
# Upgrading to v14.0
22

33
The v14.0 release of *kubernetes-engine* is a backwards incompatible
4-
release for some versions of Anthos Service Mesh (ASM).
4+
release for some versions of Anthos Service Mesh (ASM) and includes some variable changes.
5+
6+
### registry_project_id removed
7+
The `registry_project_id` variable has been replaced with a `registry_project_ids` list.
8+
9+
```diff
10+
module "gke" {
11+
source = "terraform-google-modules/kubernetes-engine/google"
12+
- version = "~> 13.0"
13+
+ version = "~> 14.0"
14+
15+
- registry_project_id = "my-project-id"
16+
+ registry_project_ids = ["my-project-id"]
17+
}
18+
```
519

620
### ASM default version changed to 1.8
721

0 commit comments

Comments
 (0)