You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -134,6 +134,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
134
134
| cluster\_ipv4\_cidr | The IP address range of the kubernetes pods in this cluster. Default is an automatically assigned CIDR. | string |`""`| no |
135
135
| cluster\_resource\_labels | The GCE resource labels (a map of key/value pairs) to be applied to the cluster | map(string) |`<map>`| no |
136
136
| configure\_ip\_masq | Enables the installation of ip masquerading, which is usually no longer required when using aliasied IP addresses. IP masquerading uses a kubectl call, so when you have a private cluster, you will need access to the API server. | string |`"false"`| no |
137
+
| create\_service\_account | Defines if service account specified to run nodes should be created. | bool |`"true"`| no |
137
138
| description | The description of the cluster | string |`""`| no |
138
139
| disable\_legacy\_metadata\_endpoints | Disable the /0.1/ and /v1beta1/ metadata server endpoints on the node. Changing this value will cause all node pools to be recreated. | bool |`"true"`| no |
139
140
| horizontal\_pod\_autoscaling | Enable horizontal pod autoscaling addon | bool |`"true"`| no |
@@ -167,7 +168,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
167
168
| region | The region to host the cluster in (required) | string | n/a | yes |
168
169
| regional | Whether is a regional cluster (zonal cluster if set false. WARNING: changing this after cluster creation is destructive!) | bool |`"true"`| no |
169
170
| remove\_default\_node\_pool | Remove default node pool while setting up the cluster | bool |`"false"`| no |
170
-
| service\_account | The service account to run nodes as if not overridden in `node_pools`. The default value will cause a cluster-specific service account to be created. | string |`"create"`| no |
171
+
| service\_account | The service account to run nodes as if not overridden in `node_pools`. The create_service_account variable default value (true) will cause a cluster-specific service account to be created. | string |`""`| no |
171
172
| stub\_domains | Map of stub domains and their resolvers to forward DNS queries for a certain domain to an external DNS server | map(list(string)) |`<map>`| no |
172
173
| subnetwork | The subnetwork to host the cluster in (required) | string | n/a | yes |
173
174
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list |`<list>`| no |
description="Defines if service account specified to run nodes should be created."
261
+
default=true
262
+
}
263
+
258
264
variable"service_account" {
259
265
type=string
260
-
description="The service account to run nodes as if not overridden in `node_pools`. The default value will cause a cluster-specific service account to be created."
261
-
default="create"
266
+
description="The service account to run nodes as if not overridden in `node_pools`. The create_service_account variable default value (true) will cause a cluster-specific service account to be created."
0 commit comments