Skip to content

Commit

Permalink
docs: add section on changes from terraform-google-modules#1495
Browse files Browse the repository at this point in the history
  • Loading branch information
mnahkies committed Dec 28, 2022
1 parent 63414d1 commit 30851b9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/upgrading_to_v25.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,26 @@ release.
}
```

### Use the created service account when creating autopilot clusters

When `create_service_account` is `true` pass the created service account to the `cluster_autoscaling` -> `auto_provisioning_defaults` block
for the `beta-autopilot-private-cluster` / `beta-autopilot-public-cluster` modules.

This will mean that the `Nodes` will use the created service account, where previously the default service account was erronously used instead.

To opt out, set `create_service_account` to `false`

```diff
module "gke" {
- source = "terraform-google-modules/kubernetes-engine"
- version = "~> 24.0"
+ source = "terraform-google-modules/kubernetes-engine"
+ version = "~> 25.0"
...
+ create_service_account = false
}
```

### Minimum Google Provider versions

Minimum Google Provider versions have been updated to `4.44.0`.

0 comments on commit 30851b9

Please sign in to comment.