Skip to content

Commit

Permalink
fix incompatable type as per failing linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ASHR4 committed Apr 20, 2024
1 parent 1238e1d commit 8099311
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ func resourceVirtualDesktopHostPoolRead(d *pluginsdk.ResourceData, meta interfac
}
d.Set("personal_desktop_assignment_type", personalDesktopAssignmentType)
d.Set("preferred_app_group_type", string(props.PreferredAppGroupType))
d.Set("public_network_access", props.PublicNetworkAccess)
d.Set("public_network_access", string(pointer.From(props.PublicNetworkAccess)))
d.Set("start_vm_on_connect", props.StartVMOnConnect)
d.Set("type", string(props.HostPoolType))
d.Set("validate_environment", props.ValidationEnvironment)
Expand Down

0 comments on commit 8099311

Please sign in to comment.