terraform/internal/command/testdata/query/duplicate-variables/query.tfquery.hcl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
256 B
HCL
Raw Permalink Normal View History

// already defined in main.tf
variable "instance_name" {
description = "The instance name to search for"
type = string
}
list "test_instance" "example" {
provider = test
config {
ami = var.target_ami
foo = var.instance_name
}
}