github.com/richardmarshall/terraform@v0.9.5-0.20170429023105-15704cc6ee35/terraform/test-fixtures/apply-resource-count-zero-list/main.tf (about)

     1  resource "null_resource" "foo" {
     2    count = 0
     3  }
     4  
     5  output "test" {
     6    value = "${sort(null_resource.foo.*.id)}"
     7  }