Skip to content

Instantly share code, notes, and snippets.

@ojhaujjwal
Last active May 12, 2020 14:31
Show Gist options
  • Save ojhaujjwal/e0e69437784e552fd52ce7bcc54c7d30 to your computer and use it in GitHub Desktop.
Save ojhaujjwal/e0e69437784e552fd52ce7bcc54c7d30 to your computer and use it in GitHub Desktop.
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