Files
opentf/terraform/testdata/refresh-data-count/refresh-data-count.tf
2019-06-30 10:16:15 +02:00

8 lines
102 B
HCL

resource "test" "foo" {
things = ["foo"]
}
data "test" "foo" {
count = length(test.foo.things)
}