Cheatsheets:
programming:
How-to:
Troubleshooting:
Rants:
Other:
Cheatsheets:
programming:
How-to:
Troubleshooting:
Rants:
Other:
This is an old revision of the document!
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
}