User Tools

Site Tools


terraform:sensitivevariables

Sensitive Variables

Sensitive variables are used to store sensitive information like passwords. When marked as sensitive, these variables will not be displayed in the console output.

variable "db_password" {
  description = "The password for the database"
  type        = string
  sensitive   = true
}
terraform/sensitivevariables.txt · Last modified: 2024/07/01 10:33 by kamaradski