mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -06:00
7 lines
152 B
HCL
7 lines
152 B
HCL
resource "terraform_remote_state" "shared" {}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
value = "${terraform_remote_state.shared.output.env_name}"
|
|
}
|