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
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,6 +116,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
116
116
|------|-------------|:----:|:-----:|:-----:|
117
117
| basic\_auth\_password | The password to be used with Basic Authentication. | string |`""`| no |
118
118
| 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 |
119
+
| cluster\_ipv4\_cidr | The IP address range of the kubernetes pods in this cluster. Default is an automatically assigned CIDR. | string |`""`| no |
119
120
| description | The description of the cluster | string |`""`| no |
120
121
| 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. | string |`"true"`| no |
121
122
| horizontal\_pod\_autoscaling | Enable horizontal pod autoscaling addon | string |`"true"`| no |
@@ -233,8 +234,10 @@ To more cleanly handle cases where desired functionality would require complex d
233
234
234
235
The root module is generated by running `make generate`. Changes to this repository should be made in the [`autogen`](/autogen) directory where appropriate.
235
236
236
-
Note: The correct sequence to update the repo using autogen functionality is the run `make generate && make generate_docs`. This
237
-
will create the various Terraform files, and then generate the Terraform documentation using `terraform-docs`.
237
+
Note: The correct sequence to update the repo using autogen
238
+
functionality is the run `make generate && make generate_docs`. This
239
+
will create the various Terraform files, and then generate the
Copy file name to clipboardExpand all lines: autogen/README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -182,6 +182,11 @@ To more cleanly handle cases where desired functionality would require complex d
182
182
183
183
The root module is generated by running `make generate`. Changes to this repository should be made in the [`autogen`](/autogen) directory where appropriate.
184
184
185
+
Note: The correct sequence to update the repo using autogen
186
+
functionality is the run `make generate && make generate_docs`. This
187
+
will create the various Terraform files, and then generate the
Copy file name to clipboardExpand all lines: autogen/variables.tf
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -251,8 +251,8 @@ variable "service_account" {
251
251
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."
252
252
default ="create"
253
253
}
254
-
255
254
{%ifprivate_cluster%}
255
+
256
256
variable "deploy_using_private_endpoint" {
257
257
description ="(Beta) A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment."
description ="Issues a client certificate to authenticate to the cluster endpoint. To maximize the security of your cluster, leave this option disabled. Client certificates don't automatically rotate and aren't easily revocable. WARNING: changing this after cluster creation is destructive!"
316
316
default ="false"
317
317
}
318
+
319
+
variable "cluster_ipv4_cidr" {
320
+
default =""
321
+
description ="The IP address range of the kubernetes pods in this cluster. Default is an automatically assigned CIDR."
0 commit comments