10b0c84d97
* remove old bootstrap Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * add meta model to set user password Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * ensure KeyOf works with objects in the state of created that already exist Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * migrate Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add support for shorter form !If tag Signed-off-by: Jens Langhammer <jens@goauthentik.io> * allow !Context to resolve other yaml tags Signed-off-by: Jens Langhammer <jens@goauthentik.io> * don't require serializer to be valid for deleting an object Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix check if a model is being created Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove duplicate way to set password Signed-off-by: Jens Langhammer <jens@goauthentik.io> * migrate token Signed-off-by: Jens Langhammer <jens@goauthentik.io> * only change what is required with migrations Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add description Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix admin status Signed-off-by: Jens Langhammer <jens@goauthentik.io> * expand tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * don't require bootstrap in events to fix ci? Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> Signed-off-by: Jens Langhammer <jens@goauthentik.io>
105 lines
2.9 KiB
YAML
105 lines
2.9 KiB
YAML
version: 1
|
|
metadata:
|
|
name: Default - Events Transport & Rules
|
|
entries:
|
|
# Run bootstrap blueprint first to ensure we have the group created
|
|
- model: authentik_blueprints.metaapplyblueprint
|
|
attrs:
|
|
identifiers:
|
|
path: system/bootstrap.yaml
|
|
required: false
|
|
- model: authentik_events.notificationtransport
|
|
id: default-email-transport
|
|
attrs:
|
|
mode: email
|
|
identifiers:
|
|
name: default-email-transport
|
|
- model: authentik_events.notificationtransport
|
|
id: default-local-transport
|
|
attrs:
|
|
mode: local
|
|
identifiers:
|
|
name: default-local-transport
|
|
- model: authentik_core.group
|
|
id: group
|
|
state: created
|
|
identifiers:
|
|
name: authentik Admins
|
|
|
|
- model: authentik_policies_event_matcher.eventmatcherpolicy
|
|
id: default-match-configuration-error
|
|
attrs:
|
|
action: configuration_error
|
|
identifiers:
|
|
name: default-match-configuration-error
|
|
- model: authentik_events.notificationrule
|
|
id: default-notify-configuration-error
|
|
identifiers:
|
|
name: default-notify-configuration-error
|
|
attrs:
|
|
severity: alert
|
|
group: !KeyOf group
|
|
transports:
|
|
- !KeyOf default-email-transport
|
|
- !KeyOf default-local-transport
|
|
- model: authentik_policies.policybinding
|
|
identifiers:
|
|
order: 0
|
|
policy: !KeyOf default-match-configuration-error
|
|
target: !KeyOf default-notify-configuration-error
|
|
|
|
- model: authentik_policies_event_matcher.eventmatcherpolicy
|
|
id: default-match-update
|
|
attrs:
|
|
action: update_available
|
|
identifiers:
|
|
name: default-match-update
|
|
- model: authentik_events.notificationrule
|
|
id: default-notify-update
|
|
identifiers:
|
|
name: default-notify-update
|
|
attrs:
|
|
severity: alert
|
|
group: !KeyOf group
|
|
transports:
|
|
- !KeyOf default-email-transport
|
|
- !KeyOf default-local-transport
|
|
- model: authentik_policies.policybinding
|
|
identifiers:
|
|
order: 0
|
|
policy: !KeyOf default-match-update
|
|
target: !KeyOf default-notify-update
|
|
|
|
- model: authentik_policies_event_matcher.eventmatcherpolicy
|
|
id: default-match-policy-exception
|
|
attrs:
|
|
action: policy_exception
|
|
identifiers:
|
|
name: default-match-policy-exception
|
|
- model: authentik_policies_event_matcher.eventmatcherpolicy
|
|
id: default-match-property-mapping-exception
|
|
attrs:
|
|
action: property_mapping_exception
|
|
identifiers:
|
|
name: default-match-property-mapping-exception
|
|
- model: authentik_events.notificationrule
|
|
id: default-notify-exception
|
|
identifiers:
|
|
name: default-notify-exception
|
|
attrs:
|
|
severity: alert
|
|
group: !KeyOf group
|
|
transports:
|
|
- !KeyOf default-email-transport
|
|
- !KeyOf default-local-transport
|
|
- model: authentik_policies.policybinding
|
|
identifiers:
|
|
order: 0
|
|
policy: !KeyOf default-match-policy-exception
|
|
target: !KeyOf default-notify-exception
|
|
- model: authentik_policies.policybinding
|
|
identifiers:
|
|
order: 1
|
|
policy: !KeyOf default-match-property-mapping-exception
|
|
target: !KeyOf default-notify-exception
|