This shows you the differences between two versions of the page.
| programming:sensitivevariables [2024/07/01 10:25] – created kamaradski | programming:sensitivevariables [2024/07/01 10:33] (current) – removed kamaradski | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== 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. | ||
| - | |||
| - | <code hcl> | ||
| - | variable " | ||
| - | description = "The password for the database" | ||
| - | type = string | ||
| - | sensitive | ||
| - | } | ||
| - | </ | ||