Skip to content

Commit 3fc63ac

Browse files
committed
Add new section for Flex Consumption Support
1 parent 915dfc0 commit 3fc63ac

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

articles/azure-functions/functions-create-maven-intellij.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,29 @@ To debug the project locally, follow these steps:
9494

9595
:::image type="content" source="media/functions-create-first-java-intellij/local-debug-functions-break.png" alt-text="Local debug function app break." lightbox="media/functions-create-first-java-intellij/local-debug-functions-break.png":::
9696

97+
## Create the function app in Azure
98+
99+
In this section, you will create a function app and related resources in your Azure subscription.
100+
101+
1. Right-click on Function App within Azure Explorer in your IDEA and select **Create**.
102+
103+
2. Check the box for **More Settings** and provide the following information at the prompts:
104+
105+
|Prompt|Selection|
106+
|--|--|
107+
|**Subscription**| Choose the subscription to use. |
108+
|**Resource Group**|Choose the resource group for your Function App.|
109+
|**Name**| Specify the name for a new Function App. Here you can accept the default value. |
110+
|**Platform**| Choose the platform with 'Windows-Java 17' or another platform as appropriate. |
111+
|**Region**| For better performance, choose a [region](https://azure.microsoft.com/regions/) near you. |
112+
|**Hosting Options**| Choose the Hosting Options for your Function App. |
113+
|**Plan**| Choose the App Service plan pricing tier you want to use. Or click **+** to create a new App Service plan. |
114+
115+
> [!IMPORTANT]
116+
> The Flex Consumption plan is [in preview](../../../includes/functions-flex-preview-note.md). You can select the option to choose **Flex Consumption** in this step.
117+
118+
3. Click **OK**. A notification will be displayed after your function app is created.
119+
97120
## Deploy your project to Azure
98121

99122
To deploy your project to Azure, follow these steps:
@@ -102,12 +125,14 @@ To deploy your project to Azure, follow these steps:
102125

103126
:::image type="content" source="media/functions-create-first-java-intellij/deploy-functions-to-azure.png" alt-text="Deploy project to Azure." lightbox="media/functions-create-first-java-intellij/deploy-functions-to-azure.png":::
104127

105-
1. If you don't have any Function App yet, click **+** in the *Function* line. Type in the function app name and choose proper platform. Here you can accept the default value. Click **OK** and the new function app you created will be automatically selected. Click **Run** to deploy your functions.
128+
1. You can select the Function App from the previous section. To create a new one, click **+** in the *Function* line. Type in the function app name and choose proper platform. Here you can accept the default value. Click **OK** and the new function app you created will be automatically selected. Click **Run** to deploy your functions.
106129

107130
:::image type="content" source="media/functions-create-first-java-intellij/deploy-functions-create-app.png" alt-text="Create function app in Azure." lightbox="media/functions-create-first-java-intellij/deploy-functions-create-app.png":::
108131

109132
:::image type="content" source="media/functions-create-first-java-intellij/deploy-functions-log.png" alt-text="Deploy function app to Azure log." lightbox="media/functions-create-first-java-intellij/deploy-functions-log.png":::
110133

134+
135+
111136
## Manage function apps from IDEA
112137

113138
To manage your function apps with **Azure Explorer** in your IDEA, follow these steps:

0 commit comments

Comments
 (0)