bunnux
bunnux
CC#
Created by bunnux on 6/19/2024 in #help
please help me understand this warning
https://www.reddit.com/r/dotnet/s/5CSCmAlroV I have already posted the question on dotnet subreddit. I hope it's ok. Thank you.
1 replies
CC#
Created by bunnux on 5/17/2023 in #help
❔ 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;
2 replies