Skip to content

Commit cf141a9

Browse files
committed
New keys article + link fixes
1 parent 96b49fd commit cf141a9

31 files changed

+395
-319
lines changed

Diff for: articles/azure-functions/create-first-function-vs-code-csharp.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
4646
|**Select a template for your project's first function**|Choose `HTTP trigger`.<sup>1</sup>|
4747
|**Provide a function name**|Type `HttpExample`.|
4848
|**Provide a namespace** | Type `My.Functions`. |
49-
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. To learn about authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
49+
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. For more information, see [Authorization level](functions-bindings-http-webhook-trigger.md#http-auth).|
5050
|**Select how you would like to open your project**|Select `Open in current window`.|
5151

5252
<sup>1</sup> Depending on your VS Code settings, you may need to use the `Change template filter` option to see the full list of templates.

Diff for: articles/azure-functions/create-first-function-vs-code-java.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
5454
|**Select a template for your project's first function**| Choose `HTTP trigger`.|
5555
| **Select the build tool for Java project** | Choose `Maven`. |
5656
|**Provide a function name**| Enter `HttpExample`.|
57-
|**Authorization level**| Choose `Anonymous`, which lets anyone call your function endpoint. For more information about the authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
57+
|**Authorization level**| Choose `Anonymous`, which lets anyone call your function endpoint. For more information, see [Authorization level](functions-bindings-http-webhook-trigger.md#http-auth).|
5858
|**Select how you would like to open your project**| Choose `Open in current window`.|
5959

6060
1. Visual Studio Code uses the provided information and generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. For more information about the files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=java#generated-project-files).

Diff for: articles/azure-functions/create-first-function-vs-code-node.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
5252
|**Select a JavaScript programming model**|Choose `Model V3`|
5353
|**Select a template for your project's first function**|Choose `HTTP trigger`.|
5454
|**Provide a function name**|Type `HttpExample`.|
55-
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. To learn about authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
55+
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. For more information, see [Authorization level](functions-bindings-http-webhook-trigger.md#http-auth).|
5656
|**Select how you would like to open your project**|Choose `Open in current window`.|
5757

5858
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. To learn more about files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=javascript#generated-project-files).

Diff for: articles/azure-functions/create-first-function-vs-code-other.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions cu
6161
|**Select a language for your function project**|Choose `Custom Handler`.|
6262
|**Select a template for your project's first function**|Choose `HTTP trigger`.|
6363
|**Provide a function name**|Type `HttpExample`.|
64-
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. To learn about authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
64+
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. For more information, see [Authorization level](functions-bindings-http-webhook-trigger.md#http-auth).|
6565
|**Select how you would like to open your project**|Choose `Open in current window`.|
6666

6767
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer.

Diff for: articles/azure-functions/create-first-function-vs-code-powershell.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
4040
|**Select a language for your function project**|Choose `PowerShell`.|
4141
|**Select a template for your project's first function**|Choose `HTTP trigger`.|
4242
|**Provide a function name**|Type `HttpExample`.|
43-
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. To learn about authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
43+
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. For more information, see [Authorization level](functions-bindings-http-webhook-trigger.md#http-auth).|
4444
|**Select how you would like to open your project**|Choose `Open in current window`.|
4545

4646
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. To learn more about files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=powershell#generated-project-files).

Diff for: articles/azure-functions/create-first-function-vs-code-python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
5757
|**Select a Python interpreter to create a virtual environment**| Choose your preferred Python interpreter. If an option isn't shown, type in the full path to your Python binary.|
5858
|**Select a template for your project's first function** | Choose `HTTP trigger`. |
5959
|**Name of the function you want to create**| Enter `HttpExample`.|
60-
|**Authorization level**| Choose `ANONYMOUS`, which lets anyone call your function endpoint. For more information about the authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
60+
|**Authorization level**| Choose `ANONYMOUS`, which lets anyone call your function endpoint. For more information, see [Authorization level](functions-bindings-http-webhook-trigger.md#http-auth).|
6161
|**Select how you would like to open your project** | Choose `Open in current window`.|
6262

6363
4. Visual Studio Code uses the provided information and generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. The generated `function_app.py` project file contains your functions.

Diff for: articles/azure-functions/create-first-function-vs-code-typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
6161
|**Select a TypeScript programming model**|Choose `Model V3`|
6262
|**Select a template for your project's first function**|Choose `HTTP trigger`.|
6363
|**Provide a function name**|Type `HttpExample`.|
64-
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. To learn about authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
64+
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. For more information, see [Authorization level](functions-bindings-http-webhook-trigger.md#http-auth).|
6565
|**Select how you would like to open your project**|Choose `Open in current window`.|
6666

6767
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. To learn more about files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=typescript#generated-project-files).

Diff for: articles/azure-functions/errors-diagnostics/diagnostic-events/azfd0007.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This error occurs when you reach the maximum number of backups of the secrets re
1818

1919
## Event description
2020

21-
Azure Functions uses an encrypted repository file (host.json) to securely store [access keys](../../functions-bindings-http-webhook-trigger.md#authorization-keys) used by your function app. Whenever the Functions host is unable to decrypt this repository file, it and regenerates the repository file and creates a backup of the unreadable file with a name like `host.snapshot.<DATE>.json`.
21+
Azure Functions uses an encrypted repository file (host.json) to securely store [access keys](../../function-keys-how-to.md) used by your function app. Whenever the Functions host is unable to decrypt this repository file, it and regenerates the repository file and creates a backup of the unreadable file with a name like `host.snapshot.<DATE>.json`.
2222

2323
Some reasons for the repository to be regenerated can include:
2424

Diff for: articles/azure-functions/errors-diagnostics/diagnostic-events/azfd0008.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This error happens when you set the Azure Blob Storage access tier to `archive`
2020

2121
By default, the access tier for blobs in Azure Storage is set to an online value (`hot` or `cool`). For more information, see [Set a blob's access tier](../../../storage/blobs/access-tiers-online-manage.md).
2222

23-
Azure Functions uses an encrypted repository file (host.json) to securely store [access keys](../../functions-bindings-http-webhook-trigger.md#authorization-keys) (function or host) used by your function app. When the access tier of this secrets repository file is set to `archive`, functions that require access keys return an error. These functions can include HTTP triggers, Event Grid calls, and durable orchestrations.
23+
Azure Functions uses an encrypted repository file (host.json) to securely store [access keys](../../function-keys-how-to.md) (function or host) used by your function app. When the access tier of this secrets repository file is set to `archive`, functions that require access keys return an error. These functions can include HTTP triggers, Event Grid calls, and durable orchestrations.
2424

2525
When access keys aren't accessible because the secrets repository is in an archived state, you see a 409 warning in the logs like:
2626

Diff for: articles/azure-functions/event-grid-how-tos.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ http://{functionappname}.azurewebsites.net/admin/host/systemkeys/eventgridextens
5959

6060
---
6161

62-
This REST API is an administrator API, so it requires your function app [master key](functions-bindings-http-webhook-trigger.md#authorization-keys). Don't confuse the system key (for invoking an Event Grid trigger function) with the master key (for performing administrative tasks on the function app). When you subscribe to an Event Grid topic, be sure to use the system key.
62+
This REST API is an administrator API, so it requires your function app [master key](function-keys-how-to.md). Don't confuse the system key (for invoking an Event Grid trigger function) with the master key (for performing administrative tasks on the function app). When you subscribe to an Event Grid topic, be sure to use the system key.
6363

6464
Here's an example of the response that provides the system key:
6565

0 commit comments

Comments
 (0)