terraform/internal/command/testdata/show-json/sensitive-values/main.tf

14 lines
191 B
HCL

variable "test_var" {
default = "boop"
sensitive = true
}
resource "test_instance" "test" {
ami = var.test_var
}
output "test" {
value = test_instance.test.ami
sensitive = true
}