From b1e229ef6c68049fac77e401fdd910c569125bf9 Mon Sep 17 00:00:00 2001 From: Pam Selle <204372+pselle@users.noreply.github.com> Date: Fri, 20 Nov 2020 10:44:37 -0500 Subject: [PATCH] Give test types cty types --- terraform/context_components_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/context_components_test.go b/terraform/context_components_test.go index fd2ac074b..0cad31643 100644 --- a/terraform/context_components_test.go +++ b/terraform/context_components_test.go @@ -66,15 +66,15 @@ func simpleTestSchema() *configschema.Block { Optional: true, }, "test_bool": { - Type: cty.String, + Type: cty.Bool, Optional: true, }, "test_list": { - Type: cty.String, + Type: cty.List(cty.String), Optional: true, }, "test_map": { - Type: cty.String, + Type: cty.Map(cty.String), Optional: true, }, },