Skip to content

Commit

Permalink
Merge pull request #20206 from myc2h6o/draft_read_casing
Browse files Browse the repository at this point in the history
`azurerm_monitor_aad_diagnostic_setting` - parse `log_analytics_workspace_id` insensitively in Read
  • Loading branch information
tombuildsstuff authored Jan 30, 2023
2 parents b80e104 + 049d971 commit b354a23
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 b354a23

Please sign in to comment.