Tag Archives: Azure

Azure – Durable Functions

By | 15/10/2025

In this post, we will see what a durable functions is and how we can implement it.First of all, what is a Durable Functions?An Azure Durable Functions is essentially an extension of Azure Functions that allows us to write stateful workflows in a serverless environment. Instead of manually managing state or relying on external storage,… Read More »

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 – 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 – 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 – 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 – How to use Azure Key Vault

By | 29/09/2021

In this post, we well see how to use Azure Key Vault in a console application, in order to store and retrieve a connection string.First of all, what is Azure Key Vault?From Microsoft web site:“Azure Key Vault is a cloud service that provides a secure store for secrets. You can securely store keys, passwords, certificates,… Read More »

Azure – Cosmos DB

By | 07/07/2021

In this post, we will see how to create a database in Cosmos DB using Azure Portal and how to manage CRUD operations with a console application.But, what is Cosmos DB?From Microsoft web site:“Azure Cosmos DB is a fully managed NoSQL database for modern app development. Single-digit millisecond response times, and automatic and instant scalability,… Read More »