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
}