Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%apply-provisioner-sensitive%main.tf
2021-09-19 12:00:18 +02:00

19 lines
320 B
HCL

variable "password" {
type = string
sensitive = true
}
resource "aws_instance" "foo" {
connection {
host = "localhost"
type = "telnet"
user = "superuser"
port = 2222
password = var.password
}
provisioner "shell" {
command = "echo ${var.password} > secrets"
}
}