terraform/internal/command/testdata/query/with-sensitive-variables/query.tfquery.hcl

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

21 lines
334 B
HCL
Raw Permalink Normal View History

variable "target_ami" {
description = "The AMI to search for"
type = string
default = "ami-12345"
}
variable "sensitive_foo" {
description = "a"
type = string
sensitive = true
}
list "test_instance" "example" {
provider = test
config {
ami = var.target_ami
foo = var.sensitive_foo
}
}