Skip to content

Commit f50928b

Browse files
authored
Fix in-portal limitations
1 parent ec68b08 commit f50928b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/azure-functions/functions-how-to-use-azure-function-app-settings.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configure function app settings in Azure Functions
33
description: Learn how to configure function app settings in Azure Functions.
44
ms.assetid: 81eb04f8-9a27-45bb-bf24-9ab6c30d205c
55
ms.topic: conceptual
6-
ms.date: 12/28/2023
6+
ms.date: 06/03/2024
77
ms.custom: cc996988-fb4f-47, devx-track-azurecli, devx-track-azurepowershell
88
---
99

@@ -159,7 +159,7 @@ az appservice plan list --query "[?id=='$appServicePlanId'].sku.tier" --output t
159159

160160
In the previous example replace `<RESOURCE_GROUP>` and `<FUNCTION_APP_NAME>` with the resource group and function app names, respective.
161161

162-
# [Azure PowerShell](#tab/azure-powershell)
162+
### [Azure PowerShell](#tab/azure-powershell)
163163

164164
Run the following Azure PowerShell command to get your hosting plan type:
165165

@@ -257,7 +257,7 @@ Use the following procedure to migrate from a Premium plan to a Consumption plan
257257
258258
HTTP triggered functions can generally be called by using a URL in the format: `https://<APP_NAME>.azurewebsites.net/api/<FUNCTION_NAME>`. When the authorization to your function is set a value other than `anonymous`, you must also provide an access key in your request. The access key can either be provided in the URL using the `?code=` query string or in the request header. To learn more, see [Function access keys](functions-bindings-http-webhook-trigger.md#authorization-keys). There are several ways to get your access keys.
259259
260-
# [Portal](#tab/portal)
260+
### [Portal](#tab/portal)
261261
262262
1. Sign in to the Azure portal, then search for and select **Function App**.
263263
@@ -269,7 +269,7 @@ HTTP triggered functions can generally be called by using a URL in the format: `
269269
270270
You can also practice least privilege by using the key just for the specific function key by selecting **Function keys** under **Developer** in your HTTP triggered function.
271271
272-
# [Azure CLI](#tab/azure-cli)
272+
### [Azure CLI](#tab/azure-cli)
273273
274274
Run the following script in Azure Cloud Shell, the output of which is the [default (host) key](functions-bindings-http-webhook-trigger.md#authorization-scopes-function-level) that can be used to access any HTTP triggered function in the function app.
275275
@@ -283,7 +283,7 @@ az rest --method POST --uri $path --query functionKeys.default --output tsv
283283

284284
In this script, replace `<SUBSCRIPTION_ID>` and `<APP_NAME>` with the ID of your subscription and your function app name, respective. This script runs on Bash in Cloud Shell. It must be modified to run in a Windows command prompt.
285285

286-
# [Azure PowerShell](#tab/azure-powershell)
286+
### [Azure PowerShell](#tab/azure-powershell)
287287

288288
Run the following script, the output of which is the [default (host) key](functions-bindings-http-webhook-trigger.md#authorization-scopes-function-level) that can be used to access any HTTP triggered function in the function app.
289289

@@ -303,11 +303,11 @@ In this script, replace `<SUBSCRIPTION_ID>` and `<APP_NAME>` with the ID of your
303303

304304
You must consider these limitations when developing your functions in the [Azure portal](https://portal.azure.com):
305305

306-
+ In-portal editing is only supported for JavaScript, PowerShell, Python, and C# Script functions.
307-
+ Python in-portal editing is only supported when running in the Consumption plan.
308306
+ In-portal editing is currently only supported for functions that were created or last modified in the portal.
307+
+ In-portal editing is only supported for JavaScript, PowerShell, Python, and C# Script functions.
308+
+ In-portal editing isn't currently supported in the preview release of the [Flex Consumption plan](flex-consumption-plan.md#considerations).
309309
+ When you deploy code to a function app from outside the portal, you can no longer edit any of the code for that function app in the portal. In this case, just continue using [local development](functions-develop-local.md).
310-
+ For compiled C# functions, Java functions, and some Python functions, you can create the function app and related resources in the portal. However, you must create the functions code project locally and then publish it to Azure.
310+
+ For compiled C# functions and Java functions, you can create the function app and related resources in the portal. However, you must create the functions code project locally and then publish it to Azure.
311311

312312
When possible, you should develop your functions locally and publish your code project to a function app in Azure. For more information, see [Code and test Azure Functions locally](functions-develop-local.md).
313313

0 commit comments

Comments
 (0)