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