Skip to content

Instantly share code, notes, and snippets.

@soerenmartius
Created July 14, 2022 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soerenmartius/94733373289f23c1569472d82eb29d51 to your computer and use it in GitHub Desktop.
Save soerenmartius/94733373289f23c1569472d82eb29d51 to your computer and use it in GitHub Desktop.
Terraform provider.tf example
# 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