Skip to content

Commit 5f4a940

Browse files
Create serverless logic with Azure Functions
1 parent 457c3d6 commit 5f4a940

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Create serverless logic with Azure Functions
2+
3+
## What is serverless compute?
4+
5+
Serverless compute can be thought of as a function as a service (FaaS), or a microservice that is hosted on a cloud platform. Your business logic runs as functions and you don't have to manually provision or scale infrastructure. The cloud provider manages infrastructure. Your app is automatically scaled out or down depending on load. Azure has several ways to build this sort of architecture. The two most common approaches are Azure Logic Apps and Azure Functions, which is the focus of this module.
6+
7+
## Verify your Azure function app
8+
9+
When deployment completes, select Go to resource. The Function App pane for your escalator function appears.
10+
11+
In the Essentials section, select the URL link to open it in a browser. A default Azure web page appears with a message that your Functions app is up and running.
12+
13+
curl --header "Content-Type: application/json" --header "x-functions-key: SS5MDrmtiDROlcGMUSuXK70o9XDrua6IQvjLypK3fRElAzFud3gSvQ==" --request POST --data "{\"name\": \"SHUBHAM\"}" https://escalator-functions-12346.azurewebsites.net/api/HttpTrigger1?code=SS5MDrmtiDROlcGMUSuXK70o9XDrua6IQvjLypK3fRElAzFud3gSvQ==
14+
15+
![alt text](image.png)
Loading
91 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)