Give test types cty types
This commit is contained in:
parent
578a3d89d1
commit
b1e229ef6c
|
@ -66,15 +66,15 @@ func simpleTestSchema() *configschema.Block {
|
||||||
Optional: true,
|
Optional: true,
|
||||||
},
|
},
|
||||||
"test_bool": {
|
"test_bool": {
|
||||||
Type: cty.String,
|
Type: cty.Bool,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
},
|
},
|
||||||
"test_list": {
|
"test_list": {
|
||||||
Type: cty.String,
|
Type: cty.List(cty.String),
|
||||||
Optional: true,
|
Optional: true,
|
||||||
},
|
},
|
||||||
"test_map": {
|
"test_map": {
|
||||||
Type: cty.String,
|
Type: cty.Map(cty.String),
|
||||||
Optional: true,
|
Optional: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue