 53b65a9d1a
			
		
	
	53b65a9d1a
	
	
	
		
			
			* add prompt field name Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove numerical prefix Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix missing name Signed-off-by: Jens Langhammer <jens@goauthentik.io> * use text field Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add description label Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add migrate blueprint to remove old stages Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add task to remove unretrievable blueprints Signed-off-by: Jens Langhammer <jens@goauthentik.io> * lint Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix blueprint test paths Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * actually fix tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix tests even more Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix fixtures Signed-off-by: Jens Langhammer <jens@goauthentik.io> Signed-off-by: Jens Langhammer <jens@goauthentik.io>
		
			
				
	
	
		
			156 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			156 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: 1
 | |
| metadata:
 | |
|   labels:
 | |
|     blueprints.goauthentik.io/instantiate: "false"
 | |
|   name: Example - Enrollment with email verification
 | |
| entries:
 | |
|   - identifiers:
 | |
|       slug: default-enrollment-flow
 | |
|     id: flow
 | |
|     model: authentik_flows.flow
 | |
|     attrs:
 | |
|       name: Default enrollment Flow
 | |
|       title: Welcome to authentik!
 | |
|       designation: enrollment
 | |
|       authentication: require_unauthenticated
 | |
|   - identifiers:
 | |
|       name: default-enrollment-field-username
 | |
|     id: prompt-field-username
 | |
|     model: authentik_stages_prompt.prompt
 | |
|     attrs:
 | |
|       field_key: username
 | |
|       label: Username
 | |
|       type: username
 | |
|       required: true
 | |
|       placeholder: Username
 | |
|       placeholder_expression: false
 | |
|       order: 0
 | |
|   - identifiers:
 | |
|       name: default-enrollment-field-password
 | |
|     id: prompt-field-password
 | |
|     model: authentik_stages_prompt.prompt
 | |
|     attrs:
 | |
|       field_key: password
 | |
|       label: Password
 | |
|       type: password
 | |
|       required: true
 | |
|       placeholder: Password
 | |
|       placeholder_expression: false
 | |
|       order: 0
 | |
|   - identifiers:
 | |
|       name: default-enrollment-field-password-repeat
 | |
|     id: prompt-field-password-repeat
 | |
|     model: authentik_stages_prompt.prompt
 | |
|     attrs:
 | |
|       field_key: password_repeat
 | |
|       label: Password (repeat)
 | |
|       type: password
 | |
|       required: true
 | |
|       placeholder: Password (repeat)
 | |
|       placeholder_expression: false
 | |
|       order: 1
 | |
|   - identifiers:
 | |
|       name: default-enrollment-field-name
 | |
|     id: prompt-field-name
 | |
|     model: authentik_stages_prompt.prompt
 | |
|     attrs:
 | |
|       field_key: name
 | |
|       label: Name
 | |
|       type: text
 | |
|       required: true
 | |
|       placeholder: Name
 | |
|       placeholder_expression: false
 | |
|       order: 0
 | |
|   - identifiers:
 | |
|       name: default-enrollment-field-email
 | |
|     id: prompt-field-email
 | |
|     model: authentik_stages_prompt.prompt
 | |
|     attrs:
 | |
|       field_key: email
 | |
|       label: Email
 | |
|       type: email
 | |
|       required: true
 | |
|       placeholder: Email
 | |
|       placeholder_expression: false
 | |
|       order: 1
 | |
|   - identifiers:
 | |
|       name: default-enrollment-email-verification
 | |
|     id: default-enrollment-email-verification
 | |
|     model: authentik_stages_email.emailstage
 | |
|     attrs:
 | |
|       use_global_settings: true
 | |
|       host: localhost
 | |
|       port: 25
 | |
|       username: ""
 | |
|       use_tls: false
 | |
|       use_ssl: false
 | |
|       timeout: 10
 | |
|       from_address: system@authentik.local
 | |
|       token_expiry: 30
 | |
|       subject: authentik
 | |
|       template: email/account_confirmation.html
 | |
|       activate_user_on_success: true
 | |
|   - identifiers:
 | |
|       name: default-enrollment-prompt-second
 | |
|     id: default-enrollment-prompt-second
 | |
|     model: authentik_stages_prompt.promptstage
 | |
|     attrs:
 | |
|       fields:
 | |
|         - !KeyOf prompt-field-name
 | |
|         - !KeyOf prompt-field-email
 | |
|   - identifiers:
 | |
|       name: default-enrollment-prompt-first
 | |
|     id: default-enrollment-prompt-first
 | |
|     model: authentik_stages_prompt.promptstage
 | |
|     attrs:
 | |
|       fields:
 | |
|         - !KeyOf prompt-field-username
 | |
|         - !KeyOf prompt-field-password
 | |
|         - !KeyOf prompt-field-password-repeat
 | |
|   - identifiers:
 | |
|       name: default-enrollment-user-login
 | |
|     id: default-enrollment-user-login
 | |
|     model: authentik_stages_user_login.userloginstage
 | |
|   - identifiers:
 | |
|       name: default-enrollment-user-write
 | |
|     id: default-enrollment-user-write
 | |
|     model: authentik_stages_user_write.userwritestage
 | |
|     attrs:
 | |
|       create_users_as_inactive: true
 | |
|       user_creation_mode: always_create
 | |
|   - identifiers:
 | |
|       target: !KeyOf flow
 | |
|       stage: !KeyOf default-enrollment-prompt-first
 | |
|       order: 10
 | |
|     model: authentik_flows.flowstagebinding
 | |
|     attrs:
 | |
|       re_evaluate_policies: false
 | |
|   - identifiers:
 | |
|       target: !KeyOf flow
 | |
|       stage: !KeyOf default-enrollment-prompt-second
 | |
|       order: 11
 | |
|     model: authentik_flows.flowstagebinding
 | |
|     attrs:
 | |
|       re_evaluate_policies: false
 | |
|   - identifiers:
 | |
|       target: !KeyOf flow
 | |
|       stage: !KeyOf default-enrollment-user-write
 | |
|       order: 20
 | |
|     model: authentik_flows.flowstagebinding
 | |
|     attrs:
 | |
|       re_evaluate_policies: false
 | |
|   - identifiers:
 | |
|       target: !KeyOf flow
 | |
|       stage: !KeyOf default-enrollment-email-verification
 | |
|       order: 30
 | |
|     model: authentik_flows.flowstagebinding
 | |
|     attrs:
 | |
|       re_evaluate_policies: false
 | |
|   - identifiers:
 | |
|       target: !KeyOf flow
 | |
|       stage: !KeyOf default-enrollment-user-login
 | |
|       order: 40
 | |
|     model: authentik_flows.flowstagebinding
 | |
|     attrs:
 | |
|       re_evaluate_policies: false
 |