mirror of
https://github.com/google/nomulus.git
synced 2025-08-04 08:52:12 +02:00
Patch terraform changes made internally (#651)
There were several LSC that made some formatting changes to our .tf files. Export these changes externally for consistency.
This commit is contained in:
parent
39e6b85837
commit
b7b4658d0c
9 changed files with 34 additions and 30 deletions
|
@ -1,10 +1,10 @@
|
|||
locals {
|
||||
proxy_cluster_zone = "${lookup(var.proxy_cluster_zones, var.proxy_cluster_region)}"
|
||||
proxy_cluster_zone = lookup(var.proxy_cluster_zones, var.proxy_cluster_region)
|
||||
}
|
||||
|
||||
resource "google_container_cluster" "proxy_cluster" {
|
||||
name = "proxy-cluster-${var.proxy_cluster_region}"
|
||||
zone = local.proxy_cluster_zone
|
||||
name = "proxy-cluster-${var.proxy_cluster_region}"
|
||||
location = local.proxy_cluster_zone
|
||||
|
||||
timeouts {
|
||||
update = "30m"
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
output "proxy_instance_group" {
|
||||
value = "${google_container_cluster.proxy_cluster.instance_group_urls[0]}"
|
||||
value = google_container_cluster.proxy_cluster.instance_group_urls[0]
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ variable "proxy_service_account_email" {}
|
|||
variable "proxy_cluster_region" {}
|
||||
|
||||
variable "proxy_cluster_zones" {
|
||||
type = "map"
|
||||
type = map
|
||||
|
||||
default = {
|
||||
americas = "us-east4-a"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue