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
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -137,6 +137,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
137
137
| create\_service\_account | Defines if service account specified to run nodes should be created. | bool |`"true"`| no |
138
138
| description | The description of the cluster | string |`""`| no |
139
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 |
140
+
| grant\_registry\_access | Grants created cluster-specific service account storage.objectViewer role. | bool |`"false"`| no |
140
141
| horizontal\_pod\_autoscaling | Enable horizontal pod autoscaling addon | bool |`"true"`| no |
description ="Grants created cluster-specific service account storage.objectViewer role."
269
+
default =false
270
+
}
271
+
266
272
variable "service_account" {
267
273
type =string
268
274
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."
description ="The dataset id for which network egress metering for this cluster will be enabled. If enabled, a daemonset will be created in the cluster to meter network egress traffic."
374
+
default =""
375
+
}
376
+
365
377
variable "node_metadata" {
366
378
description ="Specifies how node metadata is exposed to the workload running on the node"
367
379
default ="UNSPECIFIED"
368
380
}
369
381
382
+
variable "sandbox_enabled" {
383
+
type =bool
384
+
description ="(Beta) Enable GKE Sandbox (Do not forget to set `image_type` = `COS_CONTAINERD` and `node_version` = `1.12.7-gke.17` or later to use it)."
385
+
default =false
386
+
}
387
+
370
388
variable "enable_intranode_visibility" {
371
389
type =bool
372
390
description ="Whether Intra-node visibility is enabled for this cluster. This makes same node pod to pod traffic visible for VPC network"
373
391
default =false
374
392
}
375
393
376
-
variable "enable_vertical_pod_autoscaling" {
394
+
variable "enable_vertical_pod_autoscaling" {
377
395
type =bool
378
396
description ="Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it"
description ="The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format [email protected]"
Copy file name to clipboardExpand all lines: modules/beta-private-cluster/README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -136,6 +136,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
136
136
137
137
| Name | Description | Type | Default | Required |
138
138
|------|-------------|:----:|:-----:|:-----:|
139
+
| authenticator\_security\_group | The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format [email protected]| string |`"null"`| no |
139
140
| basic\_auth\_password | The password to be used with Basic Authentication. | string |`""`| no |
140
141
| basic\_auth\_username | The username to be used with Basic Authentication. An empty value will disable Basic Authentication, which is the recommended configuration. | string |`""`| no |
@@ -189,6 +191,8 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
189
191
| region | The region to host the cluster in (required) | string | n/a | yes |
190
192
| regional | Whether is a regional cluster (zonal cluster if set false. WARNING: changing this after cluster creation is destructive!) | bool |`"true"`| no |
191
193
| remove\_default\_node\_pool | Remove default node pool while setting up the cluster | bool |`"false"`| no |
194
+
| resource\_usage\_export\_dataset\_id | The dataset id for which network egress metering for this cluster will be enabled. If enabled, a daemonset will be created in the cluster to meter network egress traffic. | string |`""`| no |
195
+
| sandbox\_enabled | (Beta) Enable GKE Sandbox (Do not forget to set `image_type` = `COS_CONTAINERD` and `node_version` = `1.12.7-gke.17` or later to use it). | bool |`"false"`| no |
192
196
| 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 |
193
197
| 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 |
194
198
| subnetwork | The subnetwork to host the cluster in (required) | string | n/a | yes |
0 commit comments