diff --git a/ibm/service/vpc/data_source_ibm_is_lb_profile.go b/ibm/service/vpc/data_source_ibm_is_lb_profile.go index 2bc81ac8cf..22d3cfff73 100644 --- a/ibm/service/vpc/data_source_ibm_is_lb_profile.go +++ b/ibm/service/vpc/data_source_ibm_is_lb_profile.go @@ -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, + }, }, }, }, diff --git a/ibm/service/vpc/data_source_ibm_is_lb_profiles.go b/ibm/service/vpc/data_source_ibm_is_lb_profiles.go index 143402b6a3..b7668ffb7a 100644 --- a/ibm/service/vpc/data_source_ibm_is_lb_profiles.go +++ b/ibm/service/vpc/data_source_ibm_is_lb_profiles.go @@ -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, + }, }, }, },