Is Serverless Cheaper?
A while ago I ran across this article about serverless computing. The article discusses the cost structure for Azure Functions, one of the serverless offerings in Azure. The Motivation for Serverless To me, the real Read more…
A while ago I ran across this article about serverless computing. The article discusses the cost structure for Azure Functions, one of the serverless offerings in Azure. The Motivation for Serverless To me, the real Read more…
Azure Functions is a handy solution that allows you to focus on just the functionality your code needs to perform, and not how to package and deploy your application. You just write your functionality as Read more…
Azure Functions is a solution that allows you to publish pieces of functionality as functions. This post outlines a few things I think are good to know when building function applications.
Azure Key Vault allows you to store sensitive information in a secure way. This post shows you how easy it is to store your application’s sensitive configuration settings in Key Vault without having to change a single line of code in your application.
I am working on a solution where we have CSV files being created in Azure Blob storage. These files contain account names for employees that we want to perform particular tasks on – One or Read more…