serverless
Deploy Flex Consumption Azure Function with VNet Integration using Terraform
·1066 words·6 mins
azure
flex consumption
azure functions
serverless
terraform
The Flex Consumption plan for Azure Functions is a new hosting option that provides more flexibility and cost efficiency for running serverless applications. Unlike the traditional Consumption plan, which charges based on the number of executions and execution time, the Flex Consumption plan allows you to specify the maximum number of instances and memory allocation for your function app. This plan is ideal for scenarios where you need predictable performance and cost, as it enables you to control the scaling behavior of your functions more precisely.
Azure Function HTTP Trigger with Golang
·503 words·3 mins
azure
golang
azure functions
serverless
Back in 2017 I wrote a post about how to run a precompiled .NET Core Azure Function in a container. Fast forward to 2023 and, as some of you know, I’ve been playing with Golang for a while now so I thought it was about time to translate the .NET code and make it work with Golang.
Dapr y Azure Functions
·8 words·1 min
azure
dotnet
dapr
functions
serverless
A talk (Spanish) on Dapr and Azure Functions
Run a Durable Azure Function in a Container
·830 words·4 mins
azure
dotnet
docker
azure functions
serverless
Greetings readers! Hope you all a Happy New Year!
Last post I was about running a Precompiled .NET Core Azure Function in a Container. This time let’s go one step further and Run a Durable Azure Function in a Container
Prerequisites:
Docker installed and basic knowledge. .NET Core Azure Storage Account Azure Durable Functions Knowledge Create a .NET Core lib project # Create a .NET Core lib project.
Run a Precompiled .NET Core Azure Function in a Container
·651 words·4 mins
azure
dotnet
docker
azure functions
serverless
So this morning I found my self browsing through the images Microsoft has published in the Docker Hub and then I saw this one: microsoft/azure-functions-runtime and decided to Run a Precompiled .NET Core Azure Function in a Container.
Prerequisites:
Docker installed and basic knowledge. .NET Core Create a .NET Core lib project # Create a .NET Core lib project.
Deploy your ASP.NET Core Web API to AWS Lambda
·832 words·4 mins
dotnet
aspnetcore
aws
serverless
Today I’ll show you how to Deploy your ASP.NET Core Web API to AWS Lambda.
First be aware of the following prerequisites:
You’ll need an AWS account: https://aws.amazon.com/ You’ll need AWS CLI installed: http://docs.aws.amazon.com/cli/latest/userguide/installing.html You’ll need your AWS security credentials Some basic knowledge on AWS Stacks, API Gateway, Lambda and Buckets Now let’s start:
Create a folder for your new project # Open a command promt an run
Create vCard QR Codes using Azure Functions
·550 words·3 mins
azure
dotnet
azure functions
serverless
Today I’ll show you how to develop a Web API to Create vCard QR Codes using Azure Functions.
But wait what are Azure Functions?
As defined by Microsoft:
Azure Functions is a serverless event driven experience that extends the existing Azure App Service platform. These nano-services can scale based on demand and you pay only for the resources you consume.