Skip to content

Commit 89cdcca

Browse files
committed
Regenerate files
1 parent 8fd6468 commit 89cdcca

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

main.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ data "google_container_engine_versions" "zone" {
161161
//
162162
// data.google_container_engine_versions.zone: Cannot determine zone: set in this resource, or set provider-level zone.
163163
//
164-
zone = "${var.zones[0] == "" ? data.google_compute_zones.available.names[0] : var.zones[0]}"
165-
project = "${var.project_id}"
166-
}
164+
zone = "${var.zones[0] == "" ? data.google_compute_zones.available.names[0] : var.zones[0]}"
165+
166+
project = "${var.project_id}"
167+
}

modules/private-cluster/main.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ data "google_container_engine_versions" "zone" {
161161
//
162162
// data.google_container_engine_versions.zone: Cannot determine zone: set in this resource, or set provider-level zone.
163163
//
164-
zone = "${var.zones[0] == "" ? data.google_compute_zones.available.names[0] : var.zones[0]}"
165-
project = "${var.project_id}"
166-
}
164+
zone = "${var.zones[0] == "" ? data.google_compute_zones.available.names[0] : var.zones[0]}"
165+
166+
project = "${var.project_id}"
167+
}

modules/private-cluster/variables.tf

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

132-
133132
variable "node_pools" {
134133
type = "list"
135134
description = "List of maps containing node pools"
@@ -218,16 +217,16 @@ variable "service_account" {
218217
default = ""
219218
}
220219
variable "enable_private_endpoint" {
221-
description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint"
222-
default = false
220+
description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint"
221+
default = false
223222
}
224223

225224
variable "enable_private_nodes" {
226-
description = "(Beta) Whether nodes have internal IP addresses only"
227-
default = false
225+
description = "(Beta) Whether nodes have internal IP addresses only"
226+
default = false
228227
}
229228

230229
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"
233-
}
230+
description = "(Beta) The IP range in CIDR notation to use for the hosted master network"
231+
default = "10.0.0.0/28"
232+
}

variables.tf

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

132-
133132
variable "node_pools" {
134133
type = "list"
135134
description = "List of maps containing node pools"
@@ -216,4 +215,4 @@ variable "monitoring_service" {
216215
variable "service_account" {
217216
description = "The service account to default running nodes as if not overridden in `node_pools`. Defaults to the compute engine default service account. May also specify `create` to automatically create a cluster-specific service account"
218217
default = ""
219-
}
218+
}

0 commit comments

Comments
 (0)