mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 07:57:13 +02:00
Format terraform files
For some reason the auto-formatting didn't happen when these files are first checked in. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=191589487
This commit is contained in:
parent
e7f033201b
commit
4c06b36118
9 changed files with 105 additions and 87 deletions
|
@ -7,31 +7,36 @@ data "google_container_engine_versions" "gke_version" {
|
|||
}
|
||||
|
||||
resource "google_container_cluster" "proxy_cluster" {
|
||||
name = "proxy-cluster-${var.proxy_cluster_region}"
|
||||
zone = "${local.proxy_cluster_zone}"
|
||||
node_version = "${data.google_container_engine_versions.gke_version.latest_node_version}"
|
||||
name = "proxy-cluster-${var.proxy_cluster_region}"
|
||||
zone = "${local.proxy_cluster_zone}"
|
||||
node_version = "${data.google_container_engine_versions.gke_version.latest_node_version}"
|
||||
min_master_version = "${data.google_container_engine_versions.gke_version.latest_master_version}"
|
||||
|
||||
node_pool {
|
||||
name = "proxy-node-pool"
|
||||
name = "proxy-node-pool"
|
||||
initial_node_count = 1
|
||||
|
||||
node_config {
|
||||
tags = [
|
||||
"proxy-cluster"]
|
||||
"proxy-cluster",
|
||||
]
|
||||
|
||||
service_account = "${var.proxy_service_account_email}"
|
||||
|
||||
oauth_scopes = [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
"https://www.googleapis.com/auth/userinfo.email"
|
||||
"https://www.googleapis.com/auth/userinfo.email",
|
||||
]
|
||||
}
|
||||
|
||||
autoscaling {
|
||||
max_node_count = 5
|
||||
min_node_count = 1
|
||||
}
|
||||
|
||||
management {
|
||||
auto_repair = true
|
||||
auto_repair = true
|
||||
auto_upgrade = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue