opentofu/terraform/test-fixtures/refresh-module-var-module/main.tf

9 lines
112 B
Terraform
Raw Normal View History

2014-12-16 10:24:21 -06:00
module "foo" {
source = "./foo"
}
module "bar" {
source = "./bar"
value = "${module.foo.output}"
}