Skip to content

Instantly share code, notes, and snippets.

@YannMjl
Last active August 10, 2021 19:29
Show Gist options
  • Save YannMjl/722272bb6ecaac4dd0de85b0ed222383 to your computer and use it in GitHub Desktop.
Save YannMjl/722272bb6ecaac4dd0de85b0ed222383 to your computer and use it in GitHub Desktop.
this is a terraform provider template for Google Could project
# -------------------------------------------------------------*
# Configure the Google Cloud provider
# -------------------------------------------------------------*
# The provider “google” line indicates that you are using the
# Google Cloud Terraform provider. To prevent automatic upgrades
# to new major versions that may contain breaking changes,
# it is recommended to add version = "..." constraints to the
# corresponding provider blocks in configuration
provider "google" {
# version = "~> 3.77.0"
project = "nodejs-demo-319000"
region = "us-central1-c"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment