Closed Lirt closed 4 years ago
Could you try setting a provider alias?
provider "google-beta" {
alias = "gcp-beta"
}
module "example" {
source = "./example"
providers = {
google = "google-beta.gcp-beta"
}
}
I'm going to test it.
It works fine, thank you.
Would it be possible to allow using of
google-beta
provider?Reason I ask is that IAM policies currently fail due to using newer policy version, which is not available in stable provider (https://github.com/terraform-providers/terraform-provider-google/issues/5218). I would like to specify that I want to use google-beta provider using some variable.