github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/config/test-fixtures/validate-output-dup/main.tf (about)

     1  resource "aws_instance" "web" {
     2  }
     3  
     4  output "ip" {
     5    value = "foo"
     6  }
     7  
     8  output "ip" {
     9    value = "bar"
    10  }