Give test types cty types

This commit is contained in:
Pam Selle 2020-11-20 10:44:37 -05:00
parent 578a3d89d1
commit b1e229ef6c
1 changed files with 3 additions and 3 deletions

View File

@ -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,
},
},