mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-11 22:00:21 -04:00
Adds a test file for an incorrectly typed (non-boolean) sensitive value to ensure it errors
8 lines
122 B
HCL
8 lines
122 B
HCL
terraform {
|
|
experiments = [sensitive_variables]
|
|
}
|
|
|
|
variable "sensitive-value" {
|
|
sensitive = "123" # must be boolean
|
|
}
|