Skip to content

Commit 022561a

Browse files
committed
Add reference to migration guide and regenerate
1 parent 75de0c7 commit 022561a

File tree

4 files changed

+20
-19
lines changed

4 files changed

+20
-19
lines changed

modules/private-cluster/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,5 @@ output "node_pools_versions" {
110110

111111
output "service_account" {
112112
description = "The service account to default running nodes as if not overridden in `node_pools`."
113-
value = "${local.service_account}"
114-
}
113+
value = "${local.service_account}"
114+
}

modules/private-cluster/variables.tf

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ variable "disable_legacy_metadata_endpoints" {
129129
default = "true"
130130
}
131131

132+
132133
variable "node_pools" {
133134
type = "list"
134135
description = "List of maps containing node pools"
@@ -216,33 +217,32 @@ variable "service_account" {
216217
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."
217218
default = "create"
218219
}
219-
220220
variable "enable_private_endpoint" {
221-
description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint"
222-
default = false
221+
description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint"
222+
default = false
223223
}
224224

225225
variable "enable_private_nodes" {
226-
description = "(Beta) Whether nodes have internal IP addresses only"
227-
default = false
226+
description = "(Beta) Whether nodes have internal IP addresses only"
227+
default = false
228228
}
229229

230230
variable "master_ipv4_cidr_block" {
231-
description = "(Beta) The IP range in CIDR notation to use for the hosted master network"
232-
default = "10.0.0.0/28"
231+
description = "(Beta) The IP range in CIDR notation to use for the hosted master network"
232+
default = "10.0.0.0/28"
233233
}
234234

235235
variable "basic_auth_username" {
236236
description = "The username to be used with Basic Authentication. An empty value will disable Basic Authentication, which is the recommended configuration."
237-
default = ""
237+
default = ""
238238
}
239239

240240
variable "basic_auth_password" {
241241
description = "The password to be used with Basic Authentication."
242-
default = ""
242+
default = ""
243243
}
244244

245245
variable "issue_client_certificate" {
246246
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!"
247-
default = "false"
248-
}
247+
default = "false"
248+
}

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,5 @@ output "node_pools_versions" {
110110

111111
output "service_account" {
112112
description = "The service account to default running nodes as if not overridden in `node_pools`."
113-
value = "${local.service_account}"
114-
}
113+
value = "${local.service_account}"
114+
}

variables.tf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ variable "disable_legacy_metadata_endpoints" {
129129
default = "true"
130130
}
131131

132+
132133
variable "node_pools" {
133134
type = "list"
134135
description = "List of maps containing node pools"
@@ -219,15 +220,15 @@ variable "service_account" {
219220

220221
variable "basic_auth_username" {
221222
description = "The username to be used with Basic Authentication. An empty value will disable Basic Authentication, which is the recommended configuration."
222-
default = ""
223+
default = ""
223224
}
224225

225226
variable "basic_auth_password" {
226227
description = "The password to be used with Basic Authentication."
227-
default = ""
228+
default = ""
228229
}
229230

230231
variable "issue_client_certificate" {
231232
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!"
232-
default = "false"
233-
}
233+
default = "false"
234+
}

0 commit comments

Comments
 (0)