Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%validate-sensitive-provisioner-config%main.tf

12 lines
182 B
Terraform
Raw Normal View History

2021-09-17 20:53:40 +02:00
variable "secret" {
type = string
default = " password123"
sensitive = true
}
resource "aws_instance" "foo" {
provisioner "test" {
test_string = var.secret
}
}