File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,26 @@ release.
17
17
}
18
18
```
19
19
20
+ ### Use the created service account when creating autopilot clusters
21
+
22
+ When ` create_service_account ` is ` true ` pass the created service account to the ` cluster_autoscaling ` -> ` auto_provisioning_defaults ` block
23
+ for the ` beta-autopilot-private-cluster ` / ` beta-autopilot-public-cluster ` modules.
24
+
25
+ This will mean that the ` Nodes ` will use the created service account, where previously the default service account was erronously used instead.
26
+
27
+ To opt out, set ` create_service_account ` to ` false `
28
+
29
+ ``` diff
30
+ module "gke" {
31
+ - source = "terraform-google-modules/kubernetes-engine"
32
+ - version = "~> 24.0"
33
+ + source = "terraform-google-modules/kubernetes-engine"
34
+ + version = "~> 25.0"
35
+ ...
36
+ + create_service_account = false
37
+ }
38
+ ```
39
+
20
40
### Minimum Google Provider versions
21
41
22
42
Minimum Google Provider versions have been updated to ` 4.44.0 ` .
You can’t perform that action at this time.
0 commit comments