skip to Main Content

Azure ClientCertificateCredential – Using SNI

I'm trying to authenticate to an Azure AD Application using ClientCertificateCredential (in C#): using Azure.Identity; var credential = new ClientCertificateCredential("TenantId", "AppId", @"pathtocert.pfx"); on the application, I had configured the certificate's SNI as a trusted certificated: "trustedCertificateSubjects": [ { "authorityId": "auth…

VIEW QUESTION

Azure monitor exporter with Golang

I am currently trying to connect my Go application to Azure monitor, and I am facing issues right away with the "otel" contrib package (https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/azuremonitorexporter) The exporter that I am trying to use does not implement the ExportSpans function for…

VIEW QUESTION

Azure Deployment Script fails with AuthenticationFailed

We have a fairly simple deployment script to add a delay: resource awaitscript 'Microsoft.Resources/deploymentScripts@2020-10-01' = { name: 'await-${appName}' location: location kind: 'AzurePowerShell' properties: { azPowerShellVersion: '9.7' scriptContent: 'Start-Sleep -Seconds 150' timeout: 'PT1H' retentionInterval: 'PT1H' } dependsOn: [appServicePlan] } It has…

VIEW QUESTION
Back To Top
Search