Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/spec/v1beta3/providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -1822,6 +1822,28 @@ for the client-id and tenant-id of the managed identity.
For a complete guide on how to set up authentication for an Azure Event Hub,
see the integration [docs](/flux/integrations/azure/).

##### Provider manifest

When using managed identity (workload identity), the provider uses the
`.spec.channel` and `.spec.address` fields to identify the Azure Event Hub:

- `channel` — the Azure Event Hub namespace
- `address` — the Azure Event Hub name

```yaml
---
apiVersion: notification.toolkit.fluxcd.io/v1beta3
kind: Provider
metadata:
name: azure
namespace: default
spec:
type: azureeventhub
address: <event-hub-name>
channel: <event-hub-namespace>
serviceAccountName: <sa-name> # if object-level workload identity is enabled.
```

#### SAS based auth

When using SAS auth, we only use the `address` field in the secret.
Expand Down
Loading