Files
ansible-middleware.keycloak/playbooks/keycloak_realm.yml
Ranabir Chakraborty 728d5288ec Fixing linting issues
2026-06-25 03:22:25 +05:30

27 lines
755 B
YAML

---
- name: Playbook for Keycloak Hosts
hosts: all
vars:
keycloak_realm_admin_password: "remembertochangeme"
keycloak_realm_clients:
- name: TestClient1
client_id: TestClient1
roles:
- TestClient1Admin
- TestClient1User
realm: TestRealm
public_client: true
web_origins:
- http://testclient1origin/application
- http://testclient1origin/other
users:
- username: TestUser
password: password
client_roles:
- client: TestClient1
role: TestClient1User
realm: TestRealm
roles:
- role: middleware_automation.keycloak.keycloak_realm
keycloak_realm_realm: TestRealm