opentofu/terraform/test-fixtures/apply-destroy-cross-providers/main.tf
2015-10-03 14:16:39 -07:00

7 lines
152 B
HCL

resource "terraform_remote_state" "shared" {}
module "child" {
source = "./child"
value = "${terraform_remote_state.shared.output.env_name}"
}