FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 64a1aa6d authored by Ryan Kowalewski's avatar Ryan Kowalewski :man_dancing:
Browse files

migrate to terraform >1.0 provider alias definition

parent f61598d1
No related branches found
No related tags found
1 merge request!51Fix multiple longstanding issues
This commit is part of merge request !51. Comments created here will be created in the context of that merge request.
provider "google" {
alias = "stackdriver"
}
...@@ -5,8 +5,10 @@ terraform { ...@@ -5,8 +5,10 @@ terraform {
google = { google = {
source = "hashicorp/google" source = "hashicorp/google"
version = ">= 3.70, < 5.0" version = ">= 3.70, < 5.0"
configuration_aliases = [
google.stackdriver
]
} }
google-beta = { google-beta = {
source = "hashicorp/google-beta" source = "hashicorp/google-beta"
version = ">= 3.70, < 5.0" version = ">= 3.70, < 5.0"
...@@ -14,4 +16,4 @@ terraform { ...@@ -14,4 +16,4 @@ terraform {
} }
required_version = ">= 1.0, < 2.0" required_version = ">= 1.0, < 2.0"
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment