We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should use the best practices from the Azure Cosmos DB for NoSQL security guide: https://learn.microsoft.com/azure/cosmos-db/nosql/security
This would require changing the projects to use RBAC and Entra authentication with the following code:
using Azure.Identity; using Microsoft.Azure.Cosmos; DefaultAzureCredential credential = new(); using CosmosClient client = new( accountEndpoint: config?.CosmosUri, tokenCredential: credential );
and steps:
Azure.Identity
dotnet add package Azure.Identity --version 1.*
DefaultAzureCredential
dotnet user-secrets set "CosmosUri" "<nosql-account-endpoint>"
FYI @markjbrown
The text was updated successfully, but these errors were encountered:
jaydestro
No branches or pull requests
We should use the best practices from the Azure Cosmos DB for NoSQL security guide: https://learn.microsoft.com/azure/cosmos-db/nosql/security
This would require changing the projects to use RBAC and Entra authentication with the following code:
and steps:
Azure.Identity
package:dotnet add package Azure.Identity --version 1.*
DefaultAzureCredential
picks up their credential.dotnet user-secrets set "CosmosUri" "<nosql-account-endpoint>"
)FYI @markjbrown
The text was updated successfully, but these errors were encountered: