Skip to content

Commit

Permalink
fix config and network schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Haroon-Dweikat-Ntx committed Dec 30, 2024
1 parent d2551ef commit 7c9f206
Show file tree
Hide file tree
Showing 3 changed files with 275 additions and 259 deletions.
12 changes: 10 additions & 2 deletions nutanix/services/prismv2/data_source_restore_point_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,20 @@ func DatasourceNutanixFetchRestorePointV2() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"config": schemaForPcConfig(),
"config": {
Type: schema.TypeList,
Computed: true,
Elem: schemaForPcConfig(),
},
"is_registered_with_hosting_cluster": {
Type: schema.TypeBool,
Computed: true,
},
"network": schemaForPcNetwork(),
"network": {
Type: schema.TypeList,
Computed: true,
Elem: schemaForPcNetwork(),
},
"hosting_cluster_ext_id": {
Type: schema.TypeString,
Computed: true,
Expand Down
Loading

0 comments on commit 7c9f206

Please sign in to comment.