Files
opentf/command/testdata/variables/main.tf
Pam Selle c57ca152e6 Obfuscate sensitive vals in console
Updates terraform console to show "(sensitive)"
when a value is marked as sensitive.
2020-10-05 13:16:34 -04:00

21 lines
281 B
HCL

terraform {
experiments = [sensitive_variables]
}
variable "foo" {
default = "bar"
}
variable "snack" {
default = "popcorn"
}
variable "secret_snack" {
default = "seaweed snacks"
sensitive = true
}
locals {
snack_bar = [var.snack, var.secret_snack]
}