Martins Ahmiegbemartinsadvisory.hashnode.dev·Dec 20, 2024Step- By- Step Guide to Setting Up AZURE Blob Storage for Hosting a Static Website.a) Sign in to the Azure Portal and click on the search bar for "Storage account" As a preamble imagine you own a Company as the Director you have a chest of drawers with several compartments in your office some drawers are for Financial Records, som...Azure
Sudhakar Bandisudhakarbandi.hashnode.dev·Dec 7, 2024A Beginner's Guide to Azure Functions: Serverless Made EasyIntroduction Are you looking to build scalable, event-driven applications without worrying about managing servers? Azure Functions is here to make your life easier! This powerful serverless computing service from Microsoft Azure allows you to focus o...Azure
Andy Blackledgewww.10printiamcool.com·Dec 1, 2024Reacting to Blob Storage events in Azure FunctionsIn the previous post in this series on creating a serverless webhook proxy, I looked at connecting to Azure Blob Storage without connection strings. Now that we have the webhook payloads validated and stored, it is time to look at processing them. So...1 likeBuilding a Webhook Proxy with Azure ServerlessAzure
Leticia AkwueforThe Cloudville Blueprintscloudville.hashnode.dev·Nov 28, 2024What is Azure Functions?Azure Functions is like magic for developers! It’s a serverless solution that lets you write less code, skip server maintenance, and save costs. Imagine focusing only on what matters—your code—while Azure takes care of the infrastructure. There is ...functions
Suraj Somanisurajsomani.hashnode.dev·Nov 25, 2024Containerized Azure Functions- Part 2In previous part-1 blog, we saw how to create containerized function app and run locally using anonymous authorization. In this blog, we will see how to apply custom access keys and use same for executing HTTP functions with authorization level as Fu...Azure FunctionsAzure Functions
Mahrukh Adeelinvalid-coder.hashnode.dev·Nov 22, 2024What’s the Deal with Cloud Computing? Here’s a Simple Way to Learn ItEver heard people talk about “the cloud” and wondered what it actually means? Well, you’re not alone — and Microsoft Learn has your back! They’ve put together a super beginner-friendly module that explains cloud computing in just 23 minutes. If you’r...Microsoft
Suraj Somanisurajsomani.hashnode.dev·Nov 18, 2024Service bus triggered Azure functions in Peek-Lock modeService bus triggered Azure functions runs on arrival of new messages in queue/topic-subscription. By default, it reads messages in Receive-and-Delete mode which means as soon as message is fetched by function trigger, it is marked as completed and r...Azure FunctionsAzure Functions
Suraj Somanisurajsomani.hashnode.dev·Nov 13, 2024Containerized Azure Functions- Part 1Azure functions supports containerized function app deployments. In a containerized deployment, you create your own function app instance in a local Docker container from a supported based image. You can then deploy this containerized function app to...Azure FunctionsAzure Functions
Freeman Madudilifreemancodz.hashnode.dev·Nov 12, 2024Building a Serverless Expense Tracker API on AzureIntroduction In this guide, I’ll walk you through building a secure, serverless API for tracking expenses on Azure. Using Azure Functions for serverless computing, Cosmos DB for scalable data storage, and Azure Key Vault for secure secret management,...Azure For Developers: Scalable SolutionsAzure Functions
Freeman Madudilifreemancodz.hashnode.dev·Nov 11, 2024Deploying a Function App Using Azure CLIDeploying your serverless API to Azure is a breeze with the Azure CLI. In this post, I'll guide you step-by-step on how to create and deploy an Azure Function App, all through the command line. If you've already developed a function app locally, you’...Azure Functions