mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -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}"
|
|
}
|