You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: includes/functions-cleanup-resources-vs-code.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ ms.author: glenga
8
8
9
9
1. In Visual Studio Code, press F1 to open the command palette. In the command palette, search for and select `Azure Functions: Open in portal`.
10
10
11
-
1. Choose your function app, and press Enter. The function app page is opened in the [Azure portal](https://portal.azure.com).
11
+
1. Choose your function app, and press Enter. The function app page opens in the Azure portal.
12
12
13
13
1. In the **Overview** tab, select the named link under **Resource group**.
14
14
@@ -18,4 +18,4 @@ ms.author: glenga
18
18
19
19
1. Select **Delete resource group**, and follow the instructions.
20
20
21
-
Deletion may take a couple of minutes. When it's done, a notification appears for a few seconds. You can also select the bell icon at the top of the page to view the notification.
21
+
Deletion may take a couple of minutes. When it's done, a notification appears for a few seconds. You can also select the bell icon at the top of the page to view the notification.
Copy file name to clipboardExpand all lines: includes/functions-publish-project-vscode.md
+13-12Lines changed: 13 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,10 @@ ms.author: glenga
10
10
11
11
In this section, you create a function app and related resources in your Azure subscription and then deploy your code.
12
12
13
+
> [!IMPORTANT]
14
+
> Publishing to an existing function app overwrites the content of that app in Azure.
15
+
16
+
13
17
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, choose the **Deploy to function app...** button.
14
18
15
19

@@ -18,11 +22,8 @@ In this section, you create a function app and related resources in your Azure s
18
22
19
23
+**Select subscription**: Choose the subscription to use. You won't see this if you only have one subscription.
20
24
21
-
+**Select Function App in Azure**: Choose `+ Create new Function App` (not `Advanced`). This article doesn't support the [advanced publishing flow](../articles/azure-functions/functions-develop-vs-code.md#enable-publishing-with-advanced-create-options).
22
-
23
-
>[!IMPORTANT]
24
-
> Publishing to an existing function app overwrites the content of that app in Azure.
25
-
25
+
+**Select Function App in Azure**: Choose `+ Create new Function App`. (Don't choose the `Advanced` option, which isn't covered in this article.)
26
+
26
27
+**Enter a globally unique name for the function app**: Type a name that is valid in a URL path. The name you type is validated to make sure that it's unique in Azure Functions.
27
28
28
29
::: zone pivot="programming-language-python"
@@ -35,13 +36,13 @@ In this section, you create a function app and related resources in your Azure s
35
36
36
37
+**Select a location for new resources**: For better performance, choose a [region](https://azure.microsoft.com/regions/) near you.
37
38
38
-
1. When completed, the following Azure resources are created in your subscription:
39
-
40
-
+**[Resource group](../articles/azure-resource-manager/management/overview.md)**: Contains all of the created Azure resources. The name is based on your function app name.
41
-
+**[Storage account](../articles//storage/common/storage-introduction.md#types-of-storage-accounts)**: A standard Storage account is created with a unique name that is based on your function app name.
42
-
+**[Hosting plan](../articles/azure-functions/functions-scale.md)**: A consumption plan is created in the West US region to host your serverless function app.
43
-
+**Function app**: Your project is deployed to and runs in this new function app.
44
-
+**Application Insights**: An instance, which is connected to your function app, is created based on your function name.
39
+
1. When completed, the following Azure resources are created in your subscription, using names based on your function app name:
40
+
41
+
+A resource group, which is a logical container for related resources.
42
+
+ A standard Azure Storage account, which maintains state and other information about your projects.
43
+
+ A consumption plan, which defines the underlying host for your serverless function app.
44
+
+A function app, which provides the environment for executing your function code. A function app lets you group functions as a logical unit for easier management, deployment, and sharing of resources within the same hosting plan.
45
+
+An Application Insightsinstanceconnected to the function app, which tracks usage of your serverless function.
45
46
46
47
A notification is displayed after your function app is created and the deployment package is applied.
0 commit comments