Setting up a basic Azure Function
Let's understand Azure Functions and create one in Azure Portal.
- Go to https://portal.azure.com. Click on
Function Appsin the left sidebar:

There is no Function App available as of now.
- Click on the plus
+sign and search forFunction Apps. Then click onCreate:

- Provide the
App name,Subscriptiondetails, and existingResource Group. SelectConsumption PlaninHosting Plan. Then selectLocation:

- Select
Create NewinStorageand click onCreate:

- Now, let's go to
Function Appsin the left sidebar and verify whether the recently created Function App is available in the list or not:

- Click on the Function App and we can see the details related to the
Subscription,Resource group,URL,Location,App Service Plan / pricing tier.

We can stop or restart the function from the same pane.
- The
Settingstab provides details on theRuntime version,Application settings, and the limit on daily usage:

It also allows us to keep the Function App in Read/Write or Read Only mode. We can...