Skip to content

Commit 3a817d3

Browse files
committed
Incorporate review comments
1 parent 8986ba6 commit 3a817d3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ These settings are stored encrypted. For more information, see [App settings sec
3636

3737
You can manage app settings from the [Azure portal](functions-how-to-use-azure-function-app-settings.md?tabs=portal#settings), and by using the [Azure CLI](functions-how-to-use-azure-function-app-settings.md?tabs=azurecli#settings) and [Azure PowerShell](functions-how-to-use-azure-function-app-settings.md?tabs=powershell#settings). You can also manage app settings from [Visual Studio Code](functions-develop-vs-code.md#application-settings-in-azure) and from [Visual Studio](functions-develop-vs.md#function-app-settings).
3838

39-
### [Azure portal](#tab/portal)
39+
### [Azure portal](#tab/azure-portal)
4040

4141
To view your app settings, see [Get started in the Azure portal](#get-started-in-the-azure-portal).
4242

@@ -93,7 +93,7 @@ Azure Functions supports deploying project code to your function app by using FT
9393

9494
To get the credentials required for FTPS deployment, use one of these methods:
9595

96-
### [Azure portal](#tab/portal)
96+
### [Azure portal](#tab/azure-portal)
9797

9898
You can get the FTPS publishing credentials in the Azure portal by downloading the publishing profile for your function app.
9999

@@ -142,7 +142,7 @@ The following values indicate the plan type:
142142
| [Premium](functions-premium-plan.md) | **ElasticPremium** | `ElasticPremium` |
143143
| [Dedicated (App Service)](dedicated-plan.md) | Various | Various |
144144

145-
### [Azure portal](#tab/portal)
145+
### [Azure portal](#tab/azure-portal)
146146

147147
1. To determine the type of plan used by your function app, see the **App Service Plan** in the **Overview** page of the function app in the [Azure portal](https://portal.azure.com).
148148

@@ -193,7 +193,7 @@ You can migrate a function app between a Consumption plan and a Premium plan on
193193

194194
You can migrate your plan using these tools:
195195

196-
### [Portal](#tab/portal)
196+
### [Azure portal](#tab/azure-portal)
197197

198198
You can use the [Azure portal](https://portal.azure.com) to switch to a different plan.
199199

@@ -353,7 +353,7 @@ Use the following procedure to migrate from a Premium plan to a Consumption plan
353353
354354
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. For more information, see [Function access keys](functions-bindings-http-webhook-trigger.md#authorization-keys). There are several ways to get your access keys.
355355
356-
### [Portal](#tab/portal)
356+
### [Azure portal](#tab/azure-portal)
357357
358358
1. Sign in to the Azure portal, then search for and select **Function App**.
359359
@@ -402,7 +402,7 @@ Consider these limitations when you develop your functions in the [Azure portal]
402402
+ In-portal editing is supported only for functions that were created or last modified in the Azure portal.
403403
+ In-portal editing is supported only for JavaScript, PowerShell, Python, and C# Script functions.
404404
+ In-portal editing isn't supported in the preview release of the [Flex Consumption plan](flex-consumption-plan.md#considerations).
405-
+ 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 Azure portal. In this case, just continue using [local development](functions-develop-local.md).
405+
+ When you deploy code to a function app from outside the Azure 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).
406406
+ 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.
407407

408408
When possible, 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).
@@ -442,7 +442,7 @@ Files in the root of the app, such as function.proj or extensions.csproj need to
442442

443443
Function apps run in the Azure App Service platform, which maintains them. As such, your function apps have access to most of the features of Azure's core web hosting platform. When you use the [Azure portal](https://portal.azure.com), the left pane is where you access the many features of the App Service platform that you can use in your function apps.
444444
445-
The following matrix indicates portal feature support by hosting plan and operating system:
445+
The following matrix indicates Azure portal feature support by hosting plan and operating system:
446446
447447
| Feature | Consumption plan | Premium plan | Dedicated plan |
448448
| --- | --- | --- | --- |
@@ -468,7 +468,7 @@ The App Service editor is an advanced in-portal editor that you can use to modif
468468
469469
![Screenshot that shows the App Service editor.](./media/functions-how-to-use-azure-function-app-settings/configure-function-app-appservice-editor.png)
470470
471-
We recommend that you consider developing your functions on your local computer. When you develop locally and publish to Azure, your project files are read-only in the portal. For more information, see [Code and test Azure Functions locally](functions-develop-local.md).
471+
We recommend that you consider developing your functions on your local computer. When you develop locally and publish to Azure, your project files are read-only in the Azure portal. For more information, see [Code and test Azure Functions locally](functions-develop-local.md).
472472
473473
### <a name="console"></a>Console
474474
@@ -492,7 +492,7 @@ When you use a source control solution to develop and maintain your functions co
492492
493493
To prevent malicious code execution on the client, modern browsers block requests from web applications to resources running in a separate domain. [Cross-origin resource sharing (CORS)](https://developer.mozilla.org/docs/Web/HTTP/CORS) lets an `Access-Control-Allow-Origin` header declare which origins are allowed to call endpoints on your function app.
494494
495-
#### [Portal](#tab/portal)
495+
#### [Azure portal](#tab/azure-portal)
496496
497497
When you configure the **Allowed origins** list for your function app, the `Access-Control-Allow-Origin` header is automatically added to all responses from HTTP endpoints in your function app.
498498

0 commit comments

Comments
 (0)