Skip to content

Commit 51dd576

Browse files
Merge pull request #57 from Uddipaan-Hazarika/develop
HUBS-1709 | cluster_node_ids wrong schema type
2 parents 8522ddd + 52a1869 commit 51dd576

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)