mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-19 02:01:42 -05:00
8 lines
102 B
HCL
8 lines
102 B
HCL
resource "test" "foo" {
|
|
things = ["foo"]
|
|
}
|
|
|
|
data "test" "foo" {
|
|
count = length(test.foo.things)
|
|
}
|