Merge pull request #26437 from hashicorp/pselle/sensitive-var-type-check

Add test file for bad sensitive value
This commit is contained in:
Pam Selle 2020-10-01 10:34:06 -04:00 committed by GitHub
commit d57cb50fa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
terraform {
experiments = [sensitive_variables]
}
variable "sensitive-value" {
sensitive = "123" # must be boolean
}