mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
12 lines
137 B
HCL
12 lines
137 B
HCL
provider "aws" {
|
|
alias = "foo"
|
|
value = "config"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
providers = {
|
|
aws.bar = aws.foo
|
|
}
|
|
}
|