skip to Main Content

Azure – BlobServiceClient singleton?

I am adding Blob Storage, while I am following this tutorial: https://www.learmoreseekmore.com/2022/11/dotnet7-webapi-azure-blob-storage-file-management-example.html This piece: builder.Services.AddScoped(_ => { return new BlobServiceClient(builder.Configuration.GetConnectionString("AzureStorage")); }); if I use the connectingstring from the access Keys it is everytime blazing fast. responds in around 15ms. When…

VIEW QUESTION

error with azure terraform script to create vm

i have a terraform code in main.tf and outputs.tf and i have an error about key vault, this section is available on my azure dashboard : module.virtual_machine.azurerm_key_vault_secret.client_credentials_login: Still creating... [6m20s elapsed] module.virtual_machine.azurerm_key_vault_secret.client_credentials_password: Still creating... [6m20s elapsed] │ Error: checking for…

VIEW QUESTION

Azure pipelines not being triggered

I have a yml in my repo, with the following trigger trigger: batch: true branches: include: - prod paths: include: - src/deploy/* - ref/static/* - azure-pipelines-prod.yml exclude: - '*' As seen, I was the trigger to run only when the…

VIEW QUESTION
Back To Top
Search