mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-23 10:54:11 -04:00
8 lines
105 B
HCL
8 lines
105 B
HCL
variable "password" {
|
|
type = string
|
|
}
|
|
|
|
output "password" {
|
|
value = var.password
|
|
sensitive = true
|
|
}
|