Files
opentf/configs/testdata/valid-files/variables.tf
Pam Selle bc57c20d10 Remove sensitive_variables experiment
Ahead of the beta, remove the sensitive_variable experiment
and update tests accordingly
2020-10-08 11:22:20 -04:00

33 lines
360 B
HCL

variable "foo" {
}
variable "bar" {
default = "hello"
}
variable "baz" {
type = list
}
variable "bar-baz" {
default = []
type = list(string)
}
variable "cheeze_pizza" {
description = "Nothing special"
}
variable "π" {
default = 3.14159265359
}
variable "sensitive_value" {
default = {
"a" = 1,
"b" = 2
}
sensitive = true
}