mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 10:22:54 +02:00
34 lines
931 B
YAML
34 lines
931 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: authentik-blueprint-ldap
|
|
data:
|
|
ldap.yaml: |
|
|
version: 1
|
|
metadata:
|
|
name: LDAP Provider
|
|
entries:
|
|
- model: authentik_providers_ldap.ldapprovider
|
|
id: ldap-provider
|
|
state: present
|
|
identifiers:
|
|
name: LDAP
|
|
attrs:
|
|
name: LDAP
|
|
authorization_flow: !Find [authentik_flows.flow, [slug, default-authentication-flow]]
|
|
invalidation_flow: !Find [authentik_flows.flow, [slug, default-provider-invalidation-flow]]
|
|
base_dn: "DC=ldap,DC=goauthentik,DC=io"
|
|
bind_mode: direct
|
|
search_mode: direct
|
|
mfa_support: false
|
|
- model: authentik_core.application
|
|
id: ldap-app
|
|
state: present
|
|
identifiers:
|
|
slug: ldap
|
|
attrs:
|
|
name: LDAP
|
|
slug: ldap
|
|
backchannel_providers:
|
|
- !KeyOf ldap-provider
|