mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
9 lines
139 B
HCL
9 lines
139 B
HCL
data "null_data_source" "bar" {
|
|
foo = ["a", "b"]
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
in = "${data.null_data_source.bar.foo[1]}"
|
|
}
|