mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-15 11:13:09 -06:00
8 lines
126 B
Terraform
8 lines
126 B
Terraform
|
data "null_data_source" "foo" {
|
||
|
foo = "yes"
|
||
|
}
|
||
|
|
||
|
data "null_data_source" "bar" {
|
||
|
bar = "${data.null_data_source.foo.foo}"
|
||
|
}
|