Skip to main content
Azure Connector secrets store credentials for connecting to Azure Function Apps, enabling Control Plane to integrate with serverless Azure functions for custom processing or webhooks.

Use Cases

  • Webhook Processing: Trigger Azure Functions from Control Plane events
  • Custom Integrations: Connect to Azure-hosted business logic
  • Serverless Workflows: Integrate with Azure Durable Functions
  • Event Processing: Route events to Azure Function endpoints

Configuration Options

FieldDescriptionRequired
urlAzure Function App deployment URLYes
codeFunction authentication key (host key or function key)Yes
The code is the function key that authenticates requests to your Azure Function. You can find it in the Azure Portal under your Function App’s App keys or Function keys section.

Create an Azure Connector Secret

1

Navigate to Secrets

In the Console, navigate to Secrets and click New, or use the Create dropdown in the top-right corner and select Secret.
2

Enter basic information

Enter a Name and optional Description.
3

Select secret type

Select Azure Connector as the secret type.
4

Configure connector data

Click Data in the left pane. Enter the URL (Azure Function App deployment URL) and the Code (authentication key).
5

Create the secret

Click Create.

Finding Your Function Key

1

Open Azure Portal

Sign in to the Azure Portal.
2

Navigate to your Function App

Search for and select Function App, then select your function app from the list.
3

Access the keys

In the left menu, expand Functions, then select App keys for host-level keys. Alternatively, click on a specific function and select Function Keys for function-specific keys.
4

Copy the key

Copy the default key or create a new one for use in your Control Plane secret.
Use function-level keys when possible to limit access to specific functions. Use host keys only when you need to access multiple functions.

URL Format

Azure Function URLs follow this pattern:
https://<function-app-name>.azurewebsites.net/api/<function-name>
For custom domains:
https://api.example.com/api/<function-name>

Next Steps