mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Huge role refactoring/cleanup. Other commits will propably follow. Because some bugs will exist. Still important for longrun and also for auto docs/help/slideshow generation
This commit is contained in:
12
roles/web-app-syncope/vars/configuration.yml
Normal file
12
roles/web-app-syncope/vars/configuration.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
# syncope:
|
||||
# version: "latest"
|
||||
# credentials:
|
||||
# anonymous:
|
||||
# password: # Set in environment file
|
||||
# database:
|
||||
# password: # Set in environment file
|
||||
# administrator:
|
||||
# password: "{{ users.administrator.password }}"
|
||||
# users:
|
||||
# administrator:
|
||||
# username: "{{ users.administrator.username }}"
|
17
roles/web-app-syncope/vars/main.yml
Normal file
17
roles/web-app-syncope/vars/main.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
# General Configuration
|
||||
application_id: syncope
|
||||
database_type: "postgres"
|
||||
database_password: "{{ domains | get_domain(application_id).credentials.database_password }}"
|
||||
|
||||
# Application Specific
|
||||
syncope_keymaster_address: http://localhost:8080/syncope/rest/keymaster
|
||||
syncope_paths:
|
||||
rest: rest
|
||||
console: console
|
||||
enduser: enduser
|
||||
|
||||
syncope_anonymous_user: "{{ domains | get_domain(application_id).users.anonymous.username }}"
|
||||
syncope_anonymous_password: "{{ domains | get_domain(application_id).credentials.anonymous.password }}"
|
||||
|
||||
syncope_administrator_user: "{{ domains | get_domain(application_id).users.administrator.username }}"
|
||||
syncope_administrator_password: "{{ domains | get_domain(application_id).credentials.administrator_password }}"
|
Reference in New Issue
Block a user