From c1957fcaf020bfe0dfe86ca8cdf58b22aaf4493e Mon Sep 17 00:00:00 2001 From: Pam Selle Date: Thu, 8 Oct 2020 13:13:32 -0400 Subject: [PATCH] Add JSON test case for variable sensitive flag --- configs/testdata/valid-files/variables.tf.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configs/testdata/valid-files/variables.tf.json b/configs/testdata/valid-files/variables.tf.json index 3c97d61786..4e43eb200a 100644 --- a/configs/testdata/valid-files/variables.tf.json +++ b/configs/testdata/valid-files/variables.tf.json @@ -16,6 +16,13 @@ }, "π": { "default": 3.14159265359 + }, + "sensitive_value": { + "default": { + "a": 1, + "b": 2 + }, + "sensitive": true } } }