feat(hydra): add base recipe using ansible-role-sso

This commit is contained in:
2023-10-23 17:45:55 +02:00
parent 41d457ed11
commit dc5b7c097c
6 changed files with 92 additions and 0 deletions

View File

@ -0,0 +1 @@
/role-sso

View File

@ -0,0 +1,11 @@
---
hydra_use_external_database: true
enable_hydra_dispatcher: true
enable_hydra_passwordless: false
enable_hydra_saml: true
enable_hydra_oidc: true
enable_hydra_ldap: false
enable_oidc_test_app: false
install_only: true

View File

@ -0,0 +1,10 @@
---
- name: Ciblage de la machine locale
hosts: localhost
connection: local
tasks:
- name: Clonage du projet "Cadoles/ansible-role-sso"
ansible.builtin.git:
repo: "ssh://git@forge.cadoles.com:2222/Cadoles/ansible-role-sso.git"
dest: "role-sso"
version: "master"

View File

@ -0,0 +1,3 @@
---
- hosts: all
roles: [ role-sso ]