github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/terraform/testdata/refresh-data-count/refresh-data-count.tf (about)

     1  resource "test" "foo" {
     2    things = ["foo"]
     3  }
     4  
     5  data "test" "foo" {
     6    count = length(test.foo.things)
     7  }