Skip to main content

Webhook with custom Transformation

Use a custom webhook to transform event data before Infrahub sends it to an external endpoint. This is useful when the receiving system expects a specific payload format, such as Slack, Microsoft Teams, GitHub Actions, or other third-party APIs.

For general information about Python Transformations, see the Python Transformation guide. For details about webhook events and payloads, see Webhooks.

note

When using a Transformation with a webhook, the Transformation receives the webhook event data directly instead of executing its GraphQL query. The query attribute is still required on the Transformation class but is not used. See GitHub issue #6650 for updates on this requirement.

Create the Python Transformation​

Create a Python file with a Transformation class that processes webhook event data. The Transformation receives a dictionary containing the event information:

transforms/slack_webhook.py
from typing import Any

from infrahub_sdk.transforms import InfrahubTransform


class SlackWebhookTransform(InfrahubTransform):
query = "placeholder_query" # Required but not used for webhooks
timeout = 10

async def transform(self, data: dict[str, Any]) -> dict[str, Any]:
event_type = data.get("event", "unknown")
node_data = data.get("data", {})
node_kind = node_data.get("kind", "Unknown")
action = node_data.get("action", "unknown")

# Format payload for Slack incoming webhook
return {
"text": f"Infrahub: {node_kind} {action}",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": f"*Event:* `{event_type}`\n*Kind:* {node_kind}\n*Branch:* {data.get('branch') or 'default'}"
}
}
]
}

The data parameter contains:

FieldDescription
dataOriginal event payload (node changes, changelog, etc.)
idUnique event identifier (UUID)
eventEvent type, such as infrahub.node.updated
branchBranch name or None for branch-independent events
account_idUUID of the account that triggered the event
occured_atISO 8601 timestamp of when the event occurred

See Webhooks for example event payloads.

Create a placeholder GraphQL query​

Create a GraphQL query file. This query is required but not executed for webhook Transformations:

queries/placeholder.gql
query PlaceholderQuery {
InfrahubStatus {
summary {
active_schema_hash
}
}
}

Configure .infrahub.yml​

Add the Transformation and query to your repository configuration:

.infrahub.yml
# yaml-language-server: $schema=https://schema.infrahub.app/python-sdk/repository-config/latest.json
---
python_transforms:
- name: slack_webhook_transform
class_name: SlackWebhookTransform
file_path: "transforms/slack_webhook.py"

queries:
- name: placeholder_query
file_path: "queries/placeholder.gql"

Add the repository to Infrahub​

Add your repository containing the Transformation to Infrahub. See Connect a repository for instructions.

Create the custom webhook​

  1. Navigate to Integrations > Webhooks.
  2. Click + Add Webhook.
  3. Select Custom Webhook as the type.
  4. Fill in the webhook details:
    • Name: A descriptive name, such as "Slack Notifications"
    • URL: The destination endpoint
    • Event Type: The event to trigger on, such as infrahub.node.updated
    • Branch Scope: Which branches should trigger this webhook
  5. Select your Transformation from the Transformation dropdown.
  6. Click Save.

Verify the webhook​

  1. Make a change that triggers the configured event. For example, update a node if using infrahub.node.updated.
  2. Check that your external endpoint received the transformed payload.

If a delivery does not arrive, open the webhook and select the delivery from its related tasks. Its logs show the request that was sent and the delivery outcome, and on failure the classified reason. See Header and payload logging for what each delivery records.