Tag Archives: Azure

Azure – Bicep

By | 17/09/2025

In this post, we will see what Bicep is and how to use it in our Azure projects.Azure Bicep is a declarative language built by Microsoft to author Azure infrastructure configurations more intuitively than traditional ARM templates. It’s essentially a higher-level abstraction over ARM JSON, designed to reduce complexity and improve readability while maintaining full… Read More: Azure – Bicep »

Azure – ARM templates

By | 11/06/2025

In this post, we’ll see what ARM templates are, why you should use them and how they are structured.But first of all, what are ARM templates?“An ARM template is a JSON file that declaratively defines the infrastructure and configuration for our Azure resources. It enables us to automate the deployment process by specifying every detail… Read More: Azure – ARM templates »

Azure – CRUD operations with Cosmos DB for Table

By | 23/04/2025

In this post, we will see how to implements all CRUD operations with Cosmos DB for Table, using an Azure Function.But first of all, what is Cosmos DB for Table?“The Cosmos DB Table API is a schema-less, key-value storage solution designed to work like Azure Table Storage but with enhanced features. It allows us to… Read More: Azure – CRUD operations with Cosmos DB for Table »

Unit Test – How to test Azure Functions

By | 18/12/2024

In this post, we will see how to create Unit Test for an Azure Function named “GetListInt”, using Moq, xUnit, and Fluent Assertions.This function is triggered by HTTP requests and takes two query parameters: to and Type. Based on these inputs, it generates a list of integers that are either odd or even, depending on… Read More: Unit Test – How to test Azure Functions »

Azure – API Management

By | 16/11/2022

In this post, we will see how to create an API Management resource and how to deploy an our Web API service.But first of all, what is API Management?From Microsoft web site:“Azure API Management is a hybrid, multicloud management platform for APIs across all environments. As a platform-as-a-service, API Management supports the complete API lifecycle.APIs… Read More: Azure – API Management »

Azure – Logic Apps

By | 16/02/2022

In this post, we will see how to create a Logic App to send an email when a new file is added in a blob storage.But first of all, what is a Logic App?From Microsoft web site:“Azure Logic Apps is a cloud-based platform for creating and running automated workflows that integrate your apps, data, services, and systems. With… Read More: Azure – Logic Apps »