No-op: Use nicer HCL2 syntax. (#384)

Generated with perl -pi -e 's/\"\$\{([a-zA-Z0-9._-]*)\}\"/$1/g' $(find ./ -name '*.tf')

Copied from cl/282012376.
This commit is contained in:
Lai Jiang
2019-11-22 16:08:56 -05:00
committed by GitHub
parent c920f709ef
commit 02846bcbdd
11 changed files with 68 additions and 68 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ locals {
resource "google_container_cluster" "proxy_cluster" {
name = "proxy-cluster-${var.proxy_cluster_region}"
zone = "${local.proxy_cluster_zone}"
zone = local.proxy_cluster_zone
timeouts {
update = "30m"
@@ -19,7 +19,7 @@ resource "google_container_cluster" "proxy_cluster" {
"proxy-cluster",
]
service_account = "${var.proxy_service_account_email}"
service_account = var.proxy_service_account_email
oauth_scopes = [
"https://www.googleapis.com/auth/cloud-platform",