github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/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  }