Skip to content

Commit 52a1869

Browse files
HUBS-1709 | cluster_node_ids parameter defined as a string whereas DCT takes it as a list of string.
1 parent 8522ddd commit 52a1869

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

internal/provider/resource_vdb.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,11 @@ func resourceVdb() *schema.Resource {
9696
Optional: true,
9797
},
9898
"cluster_node_ids": {
99-
Type: schema.TypeString,
99+
Type: schema.TypeList,
100100
Optional: true,
101+
Elem: &schema.Schema{
102+
Type: schema.TypeString,
103+
},
101104
},
102105
"truncate_log_on_checkpoint": {
103106
Type: schema.TypeBool,

0 commit comments

Comments
 (0)