github.com/emc-cmd/terraform@v0.7.8-0.20161101145618-f16309630e7c/terraform/test-fixtures/validate-targeted/main.tf (about)

     1  resource "aws_instance" "foo" {
     2      num = "2"
     3      provisioner "shell" {
     4         command = "echo hi"
     5      }
     6  }
     7  
     8  resource "aws_instance" "bar" {
     9      foo = "bar"
    10      provisioner "shell" {
    11         command = "echo hi"
    12      }
    13  }