We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version 0.11 and 0.12
Please list the resources as a list, for example:
Making the name argument optional will provide 2 use cases.
data "ibm_is_region" "current" {} resource ibm_database standalone { ... region = data.ibm_is_region.current.name }
Example of calling the module
provider "ibm" { region = "us-east" alias = "east" } provider "ibm" { region = "us-south" alias = "south" } module "database_with_replica" { providers { ibm.primary = "ibm.east ibm.secondary = "ibm.south" } }
Example of the module main.tf
provider "ibm" { alias = "primary" } provider "ibm" { alias = "secondary" } data ibm_is_region primary { provider = ibm.primary } data ibm_is_region secondary { provider = ibm.secondary } resource ibm_database primary { ... region = data.ibm_is_region.primary.name } resource ibm_database replica { ... region = data.ibm_is_region.secondary.naem }
The text was updated successfully, but these errors were encountered:
hkantare
Successfully merging a pull request may close this issue.
Terraform Version
version 0.11 and 0.12
Affected Resource(s)
Please list the resources as a list, for example:
Making the name argument optional will provide 2 use cases.
Example of calling the module
Example of the module main.tf
The text was updated successfully, but these errors were encountered: