HostKeys

Functions host level keys.

AzureCloudComputeEvent-DrivenMicrosoftServerless

Properties

Name Type Description
masterKey string Secret key.
functionKeys object Host level function keys.
systemKeys object System keys.
View JSON Schema on GitHub

JSON Schema

azure-functions-host-keys-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/microsoft-azure-functions/refs/heads/main/json-schema/azure-functions-host-keys-schema.json",
  "title": "HostKeys",
  "description": "Functions host level keys.",
  "type": "object",
  "properties": {
    "masterKey": {
      "type": "string",
      "description": "Secret key."
    },
    "functionKeys": {
      "type": "object",
      "description": "Host level function keys.",
      "additionalProperties": {
        "type": "string"
      }
    },
    "systemKeys": {
      "type": "object",
      "description": "System keys.",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}