skip to Main Content

Azure – Read 'Attribute & Claims' from SAML Entra application configuration using PowerShell

I want to read 'Attribute & Claims' from SAML enterprise application configuration using PowerShell. I have found the Graph command Get-MgBetaServicePrincipalClaimMappingPolicy: https://learn.microsoft.com/en-us/graph/api/serviceprincipal-list-claimsmappingpolicies?view=graph-rest-beta&tabs=powershell but it always return empty value, even if I can see that attributes are configured in Azure Portal.…

VIEW QUESTION

UseAzureMonitor duplicates all logs

builder.Services .AddOpenTelemetry() .UseAzureMonitor() .ConfigureResource(r => r.AddService("XYZ")) .WithTracing(b => b .AddSource("X") .AddAzureMonitorTraceExporter()) .WithMetrics(b => b .AddMeter("X") .AddAzureMonitorMetricExporter()); I am trying to integrate my app with Azure Monitor by using UseAzureMonitor extension and my custom Tracing and Metrics. Separately they work as…

VIEW QUESTION
Back To Top
Search