24 lines
349 B
YAML
24 lines
349 B
YAML
|
---
|
||
|
- name: Setup database
|
||
|
hosts: pgsqlserver
|
||
|
become: true
|
||
|
|
||
|
roles:
|
||
|
- hydra_database
|
||
|
|
||
|
- name: Install authorization server
|
||
|
hosts: authserver
|
||
|
become: true
|
||
|
|
||
|
roles:
|
||
|
- hydra_server
|
||
|
- oidc_idp
|
||
|
- oidc_client_registration
|
||
|
|
||
|
- name: Install demo application
|
||
|
hosts: demoserver
|
||
|
become: true
|
||
|
|
||
|
roles:
|
||
|
- oidc_demo_application
|