opentofu/config/test-fixtures/validate-output-dup/main.tf
2016-08-25 14:43:57 -07:00

11 lines
100 B
HCL

resource "aws_instance" "web" {
}
output "ip" {
value = "foo"
}
output "ip" {
value = "bar"
}