Skip to content

Commit

Permalink
azurerm_monitor_aad_diagnostic_setting - parse `log_analytics_works…
Browse files Browse the repository at this point in the history
…pace_id` insensitively in Read
  • Loading branch information
myc2h6o committed Jan 19, 2023
1 parent 339172b commit 049d971
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ func resourceMonitorAADDiagnosticSettingRead(d *pluginsdk.ResourceData, meta int

workspaceId := ""
if resp.WorkspaceID != nil && *resp.WorkspaceID != "" {
parsedId, err := workspaces.ParseWorkspaceID(*resp.WorkspaceID)
parsedId, err := workspaces.ParseWorkspaceIDInsensitively(*resp.WorkspaceID)
if err != nil {
return err
}
Expand Down

0 comments on commit 049d971

Please sign in to comment.