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-create-function-app-portal.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: functions
5
5
author: ggailey777
6
6
ms.service: azure-functions
7
7
ms.topic: include
8
-
ms.date: 06/19/2023
8
+
ms.date: 05/01/2024
9
9
ms.author: glenga
10
10
ms.custom: include file, devdivchpfy22
11
11
---
@@ -14,21 +14,21 @@ ms.custom: include file, devdivchpfy22
14
14
15
15
1. In the **New** page, select **Compute** > **Function App**.
16
16
17
+
1. Under **Select a hosting option**, select **Consumption** > **Select** to create your app in the default **Consumption** plan. In this [serverless](https://azure.microsoft.com/overview/serverless-computing/) hosting option, you pay only for the time your functions run. [Premium plan](../articles/azure-functions/functions-premium-plan.md) also offers dynamic scaling. When you run in an App Service plan, you must manage the [scaling of your function app](../articles/azure-functions/functions-scale.md).
18
+
17
19
1. On the **Basics** page, use the function app settings as specified in the following table:
18
20
19
21
| Setting | Suggested value | Description |
20
22
| ------------ | ---------------- | ----------- |
21
23
|**Subscription**| Your subscription | The subscription under which you create your new function app. |
22
24
|**[Resource Group](../articles/azure-resource-manager/management/overview.md)**|*myResourceGroup*| Name for the new resource group in which you create your function app. You should create a new resource group because there are [known limitations when creating new function apps in an existing resource group](../articles/azure-functions/functions-scale.md#limitations-for-creating-new-function-apps-in-an-existing-resource-group).|
23
25
|**Function App name**| Globally unique name | Name that identifies your new function app. Valid characters are `a-z` (case insensitive), `0-9`, and `-`. |
24
-
|**Do you want to deploy code or container image?**| Code | Option to publish code files or a [Docker container](../articles/azure-functions/functions-how-to-custom-container.md). |
25
26
|**Runtime stack**| Preferred language | Choose a runtime that supports your favorite function programming language. In-portal editing is only available for JavaScript, PowerShell, Python, TypeScript, and C# script. C# class library and Java functions must be [developed locally](../articles/azure-functions/functions-develop-local.md#local-development-environments). |
26
27
|**Version**| Version number | Choose the version of your installed runtime. |
27
28
|**Region**| Preferred region | Select a [region](https://azure.microsoft.com/regions/) that's near you or near other services that your functions can access. |
28
-
|**Operating system**| Windows | An operating system is preselected for you based on your runtime stack selection, but you can change the setting if necessary. In-portal editing is only supported on Windows. Container publishing is only supported on Linux. |
29
-
|**[Hosting options and plans](../articles/azure-functions/functions-scale.md)**|**Consumption (Serverless)**| Hosting plan that defines how resources are allocated to your function app. In the default **Consumption** plan, resources are added dynamically as required by your functions. In this [serverless](https://azure.microsoft.com/overview/serverless-computing/) hosting, you pay only for the time your functions run. [Premium plan](../articles/azure-functions/functions-premium-plan.md) also offers dynamic scaling. When you run in an App Service plan, you must manage the [scaling of your function app](../articles/azure-functions/functions-scale.md). |
29
+
|**Operating system**| Windows | An operating system is preselected for you based on your runtime stack selection, but you can change the setting if necessary. In-portal editing is only supported on Windows. |
30
30
31
-
1. Accept the default options of creating a new storage account on the **Storage** tab and a new Application Insight instance on the **Monitoring** tab. You can also choose to use an existing storage account or Application Insights instance.
31
+
1. Accept the default options in the remaining tabs, including the default behavior of creating a new storage account on the **Storage** tab and a new Application Insight instance on the **Monitoring** tab. You can also choose to use an existing storage account or Application Insights instance.
32
32
33
33
1. Select **Review + create** to review the app configuration you chose, and then select **Create** to provision and deploy the function app.
0 commit comments