Last active
August 10, 2021 19:29
-
-
Save YannMjl/722272bb6ecaac4dd0de85b0ed222383 to your computer and use it in GitHub Desktop.
this is a terraform provider template for Google Could project
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
# -------------------------------------------------------------* | |
# 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