oidc-parent/deployment/playbooks/01_install_cacert_oidc.yml
Jan Dittberner 00c0d3de1a Create basic local playbook and roles
- create ansible structure
- create generated roles
- add hydra_database role
2022-08-10 20:35:03 +02:00

23 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