Hі
Can you please tell me how to get the region of the provider?
My configuration:
provider "google" {
project = "project"
region = "europe-west1"
}
...
In:
terraform --version
Terraform v0.12.25
+ provider.google v3.29.0
I have in planfile:
"provider_config": {
"google": {
"name": "google",
"expressions": {
"credentials": {},
"project": {
"constant_value": "project"
},
"region": {
"constant_value": "europe-west1"
}
}
}
}
But in:
Terraform v0.13.0-beta3
+ provider registry.terraform.io/hashicorp/google v3.29.0
In planfile we dont have provider_config setting only name:
"provider_config": {
"google": {
"name": "google"
}
}
Thanks!
P.S. Sorry if it, not best place to ask such kind of question.)