Created
July 14, 2022 11:21
-
-
Save soerenmartius/94733373289f23c1569472d82eb29d51 to your computer and use it in GitHub Desktop.
Terraform provider.tf example
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
# File: /projects/my-project-<env>/<stack>/provider.tf | |
provider "google" { | |
project = "my-project-<env>" | |
region = "europe-north1" | |
} | |
terraform { | |
required_providers { | |
google = { | |
source = "hashicorp/google" | |
version = "4.0" | |
} | |
} | |
} | |
terraform { | |
required_version = "1.2.3" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment