Last active
May 12, 2020 14:31
-
-
Save ojhaujjwal/e0e69437784e552fd52ce7bcc54c7d30 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
variable "gcp_region" { | |
type=string | |
default="us-west3" | |
} | |
provider "template" { | |
version = "~> 2.0" | |
} | |
provider "google" { | |
credentials = file("service-account.json") | |
project = "YOUR-PROJECT-ID" | |
region = var.gcp_region | |
version = "~> 3.16" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment