Skip to content

Commit 29526a8

Browse files
Merge pull request #295960 from ggailey777/patch-6
[Functions] Remove incorrect assertion about master key
2 parents ea40233 + de3a3ed commit 29526a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/function-keys-how-to.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The scope of an access key and the actions it supports depend on the type of acc
2929
| ----- | ----- | ---- | ---- |
3030
| **Function** | `default` or user defined | `function` | Allows access only to a specific function endpoint. |
3131
| **Host** | `default` or user defined | `function` | Allows access to all function endpoints in a function app. |
32-
| **Master** | `_master` | `admin` | Special host key that also provides administrative access to the runtime REST APIs in a function app. This key can't be revoked. Because the master key grants elevated permissions in your function app, you shouldn't share this key with third parties or distribute it in native client applications. |
32+
| **Master** | `_master` | `admin` | Special host key that also provides administrative access to the runtime REST APIs in a function app. Because the master key grants elevated permissions in your function app, you shouldn't share this key with third parties or distribute it in native client applications. |
3333
| **System** | Depends on the extension | n/a | Specific extensions might require a system-managed key to access webhook endpoints. System keys are designed for extension-specific function endpoints that get called by internal components. For example, the [Event Grid trigger](functions-bindings-event-grid-trigger.md) requires that the subscription use a system key when calling the trigger endpoint. Durable Functions also uses system keys to call [Durable Task extension APIs](durable/durable-functions-http-api.md). <br/>System keys can only be created by specific extensions, and you can't explicitly set their values. Like other keys, you can generate a new value for the key from the portal or by using the key APIs. |
3434

3535
Each key is named for reference, and there's a default key (named `default`) at the function and host level. Function keys take precedence over host keys. When two keys are defined with the same name, the function key is always used.

0 commit comments

Comments
 (0)