mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
13 lines
187 B
HCL
13 lines
187 B
HCL
variable "password" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "resource" {
|
|
id = "9ddca5a9"
|
|
value = var.password
|
|
}
|
|
|
|
output "password" {
|
|
value = var.password
|
|
sensitive = true
|
|
}
|