github.com/trawler/terraform@v0.10.8-0.20171106022149-4b1c7a1d9b48/terraform/test-fixtures/apply-resource-count-one-list/main.tf (about)

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