Add test file for bad sensitive value

Adds a test file for an incorrectly typed
(non-boolean) sensitive value to ensure it errors
This commit is contained in:
Pam Selle 2020-09-30 13:55:45 -04:00
parent b0f58479c5
commit ada6f45871
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
}