opentofu/terraform/test-fixtures/destroy-module-with-provider/main.tf
2017-11-07 22:05:52 -05:00

12 lines
193 B
HCL

// this is the provider that should actually be used by orphaned resources
provider "aws" {
alias = "bar"
}
module "mod" {
source = "./mod"
providers = {
"aws.foo" = "aws.bar"
}
}