opentofu/terraform/test-fixtures/apply-destroy-cross-providers/main.tf

7 lines
152 B
Terraform
Raw Normal View History

2015-09-30 17:50:21 -05:00
resource "terraform_remote_state" "shared" {}
module "child" {
source = "./child"
value = "${terraform_remote_state.shared.output.env_name}"
}