Azure Auth
Please make sure to check the general Supabase Azure social login docs to get an overview on how to prepare an Azure "App Registration".
Example
The following example illustrates how you can configure the Core resource to enable Azure social login support:
apiVersion: supabase.k8s.icb4dc0.de/v1alpha1
kind: Core
metadata:
# ...
spec:
# ...
auth:
# ...
providers:
azure:
enabled: true
url: https://login.microsoftonline.com/<your-tenant-id>/v2.0"
clientID: <your-client-id>
clientSecretRef:
name: <name-of-your-secret>
key: <key-of-client-secret>
# ...