github.com/bendemaree/terraform@v0.5.4-0.20150613200311-f50d97d6eee6/terraform/test-fixtures/apply-provisioner-self-ref/main.tf (about)

     1  resource "aws_instance" "foo" {
     2      foo = "bar"
     3  
     4      provisioner "shell" {
     5          command = "${self.foo}"
     6      }
     7  }