From 7fef1db20df412a5fe648f8a9b4f9cf0f345176e Mon Sep 17 00:00:00 2001 From: Pam Selle <204372+pselle@users.noreply.github.com> Date: Wed, 2 Sep 2020 15:18:26 -0400 Subject: [PATCH] Add sensitive variable configs test coverage --- configs/testdata/valid-files/variables.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configs/testdata/valid-files/variables.tf b/configs/testdata/valid-files/variables.tf index 817649307..668761bc9 100644 --- a/configs/testdata/valid-files/variables.tf +++ b/configs/testdata/valid-files/variables.tf @@ -22,3 +22,7 @@ variable "cheeze_pizza" { variable "π" { default = 3.14159265359 } + +variable "sensitive-value" { + sensitive = true +}