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