12 lines
182 B
HCL
12 lines
182 B
HCL
variable "secret" {
|
|
type = string
|
|
default = " password123"
|
|
sensitive = true
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
provisioner "test" {
|
|
test_string = var.secret
|
|
}
|
|
}
|