Azure, DevOps and .NET articles

Empowering developers since 2015. Real articles, real insights.

DotNet61 Azure45 DevOps35 JavaScript23 VisualStudio17 CSS12 Jekyll8 Git8 All topics →

    Secure Cosmos DB access from an Azure Web App with a service endpoint

    Consider the following real-life application scenario. Your Web App (Azure App Service) accesses a CosmosDB instance to read data. Your users access the web application from its UI, and you want to ensure they cannot directly access the CosmosDB instance using its public URL.

    In this article, you will learn:

    Read the complete article

    Deploy .NET/Angular to Azure App Service on multiple envs with Bicep

    In this article, I will show you a full tutorial on how to create a .NET application using Angular for the frontend and deploy this application with Azure DevOps pipelines on multiple App Service environments.

    You are going to learn:

    You can find the code for this tutorial on my GitHub account.

    Read the complete article

    Slice C# arrays with range ... and index-from-end ^ operators

    From time to time, I like to refresh my knowledge of some basic features of C#. Today, we are going to focus on the .. operator, also known as the range operator, and the ^ operator, also known as the hat operator.

    Read the complete article

    Use TableOutput to write to a Storage Account with a Managed Identity

    Consider the following scenario in Azure:

    The TableOutputAttribute comes to the rescue. Let us see how.

    Read the complete article

    Access Key Vault secrets in Azure Pipelines with a certificate

    Azure Key Vault is a cloud service that provides secure storage for secrets, keys, and certificates of your applications. Integrating Key Vault with Azure DevOps pipelines enhances security by managing sensitive information efficiently.

    This article will guide you through the process of accessing secrets from an Azure Key Vault using a Service Principal with a certificate within an Azure pipeline. We will start for the very first steps of creating all the needed resources in Azure, before going back to Azure DevOps. For training reasons, we will perform all the configuration steps with CLI commands, avoiding the Azure Portal UI.

    Read the complete article