mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-17 14:00:20 -05:00
10 lines
164 B
HCL
10 lines
164 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
resource "test_object" "create" {}
|
|
|
|
resource "test_object" "other" {
|
|
test_string = "${test_object.create.test_string}"
|
|
}
|