Skip to content

Commit

Permalink
chore(docs): add registry_project_id to upgrade doc (#834)
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante committed Feb 24, 2021
1 parent 83eae98 commit 76b9b75
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/upgrading_to_v14.0.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
# Upgrading to v14.0

The v14.0 release of *kubernetes-engine* is a backwards incompatible
release for some versions of Anthos Service Mesh (ASM).
release for some versions of Anthos Service Mesh (ASM) and includes some variable changes.

### registry_project_id removed
The `registry_project_id` variable has been replaced with a `registry_project_ids` list.

```diff
module "gke" {
source = "terraform-google-modules/kubernetes-engine/google"
- version = "~> 13.0"
+ version = "~> 14.0"

- registry_project_id = "my-project-id"
+ registry_project_ids = ["my-project-id"]
}
```

### ASM default version changed to 1.8

Expand Down

0 comments on commit 76b9b75

Please sign in to comment.