Skip to content

Commit

Permalink
LB profile datasource access mode value support
Browse files Browse the repository at this point in the history
  • Loading branch information
deepaksibm committed Nov 6, 2024
1 parent cf63419 commit 376764e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion ibm/service/vpc/data_source_ibm_is_lb_profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,12 @@ func DataSourceIBMISLbProfile() *schema.Resource {
Description: "The type for access mode",
},
"value": {
Type: schema.TypeString,
Type: schema.TypeList,
Computed: true,
Description: "Access modes for this profile",
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
},
},
Expand Down
5 changes: 4 additions & 1 deletion ibm/service/vpc/data_source_ibm_is_lb_profiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,12 @@ func DataSourceIBMISLbProfiles() *schema.Resource {
Description: "The type for access mode",
},
"value": {
Type: schema.TypeString,
Type: schema.TypeList,
Computed: true,
Description: "Access modes for this profile",
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
},
},
Expand Down

0 comments on commit 376764e

Please sign in to comment.