terraform fmt on examples (#1148)

This commit is contained in:
Nathan McKinley 2018-03-02 16:16:20 -08:00 committed by GitHub
parent 5ea98d27f9
commit 142ac79781
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# https://cloud.google.com/vpc/docs/shared-vpc
provider "google" {
region = "${var.region}"
region = "${var.region}"
credentials = "${file("${var.credentials_file_path}")}"
}

View File

@ -16,5 +16,5 @@ variable "billing_account_id" {
variable "credentials_file_path" {
description = "Location of the credentials to use."
default = "~/.gcloud/Terraform.json"
default = "~/.gcloud/Terraform.json"
}