Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LB profile datasource access mode value support #5773

Merged
merged 5 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading