C
C#14mo ago
Bunnuz

❔ Unauthorized while reading secrets from Azure Keyvault

I am trying to read secrets from Keyvault locally in my API application with the following code:
SecretClient client = new(new Uri($"<url>"), new DefaultAzureCredential());
KeyVaultSecret secret = client.GetSecretAsync("<key>").GetAwaiter().GetResult();
return secret.Value;
SecretClient client = new(new Uri($"<url>"), new DefaultAzureCredential());
KeyVaultSecret secret = client.GetSecretAsync("<key>").GetAwaiter().GetResult();
return secret.Value;
and I am facing this error: {"error":{"code":"Unauthorized","message":"AKV10032: Invalid issuer. Expected one of https://sts.windows.net/<guid1>/, https://sts.windows.net/<guid2>/, https://sts.windows.net/<guid3>/, found https://sts.windows.net/<guid4>/."}} when I run the same code on a console application, I am able to read the secret without errors. I am not able to understand why is it throwing Unauthorized when I am running it on API application. how can I solve this? I also tried this but no luck..
var options = new DefaultAzureCredentialOptions();
options.VisualStudioTenantId = "<tenantGuid>";
SecretClient client = new(new Uri($"<url>"), new DefaultAzureCredential()); KeyVaultSecret secret = client.GetSecretAsync("<key>").GetAwaiter().GetResult();
return secret.Value;
var options = new DefaultAzureCredentialOptions();
options.VisualStudioTenantId = "<tenantGuid>";
SecretClient client = new(new Uri($"<url>"), new DefaultAzureCredential()); KeyVaultSecret secret = client.GetSecretAsync("<key>").GetAwaiter().GetResult();
return secret.Value;
1 Reply
Accord
Accord14mo ago
Looks like nothing has happened here. I will mark this as stale and this post will be archived until there is new activity.