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