mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
12 lines
193 B
HCL
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"
|
|
}
|
|
}
|