From the course: Azure Event Grid

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Create storage account for function app

Create storage account for function app - Azure Tutorial

From the course: Azure Event Grid

Start my 1-month free trial

Create storage account for function app

- Now at this this point in my Azure subscription I have created a resource group called SM and I have created a storage account inside of that resource group, which will act as the publisher. Now let's focus on the subscriber, which will be an Azure function. So let's go ahead and create an Azure function as it'll keep everything in the same resource group. So in order for me to create an Azure function first I'll need to create storage for that function. How do we do that? Very simple: az storage account create --name smfuncstorage --location westcentralus - -resource group sm because that's where we're keeping everything, - -sku Standard_LRS --kind storage and hit enter. Now why am I keeping everything in the same resource group? Well, because it makes cleanup a little bit easier later so when I'm done with this demo, I can get rid of that resource group and everything is cleaned up. So I can stay on top of my billing. Okay, let's wait for this to finish. It says running, in a…

Contents