mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2026-07-26 09:25:08 +00:00
Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
404d2f6a1b | ||
|
|
bfcb125d87 | ||
|
|
1164bf008d | ||
|
|
f3353d1686 | ||
|
|
e4c3ec8046 | ||
|
|
82022b9031 | ||
|
|
0307985282 | ||
|
|
b0d1114684 | ||
|
|
728d5288ec | ||
|
|
eaeedd8d74 | ||
|
|
86a6bc63bb | ||
|
|
d557665dc9 | ||
|
|
bd82a85dea | ||
|
|
1f82f50127 | ||
|
|
adf0f7fc36 | ||
|
|
0a9e6c66eb | ||
|
|
da3d5e0ed6 |
@@ -38,7 +38,5 @@ skip_list:
|
|||||||
- vars_should_not_be_used
|
- vars_should_not_be_used
|
||||||
- file_is_small_enough
|
- file_is_small_enough
|
||||||
- file_has_valid_name
|
- file_has_valid_name
|
||||||
- name[template]
|
|
||||||
- var-naming[no-role-prefix]
|
|
||||||
|
|
||||||
use_default_rules: true
|
use_default_rules: true
|
||||||
|
|||||||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -22,4 +22,4 @@ jobs:
|
|||||||
root_permission_varname: 'keycloak_install_requires_become'
|
root_permission_varname: 'keycloak_install_requires_become'
|
||||||
debug_verbosity: "${{ github.event.inputs.debug_verbosity }}"
|
debug_verbosity: "${{ github.event.inputs.debug_verbosity }}"
|
||||||
molecule_tests: >-
|
molecule_tests: >-
|
||||||
[ "debian", "quarkus", "quarkus_ha", "quarkus_ha_remote", "quarkus_ha_26.4_below", "default", "quarkus_devmode", "quarkus_upgrade", "keycloak_modules" ]
|
[ "debian", "sso_test", "quarkus", "quarkus_ha", "quarkus_ha_remote", "quarkus_ha_26.4_below", "default", "quarkus_devmode", "quarkus_upgrade", "keycloak_modules" ]
|
||||||
|
|||||||
@@ -6,6 +6,21 @@ middleware\_automation.keycloak Release Notes
|
|||||||
|
|
||||||
This changelog describes changes after version 0.2.6.
|
This changelog describes changes after version 0.2.6.
|
||||||
|
|
||||||
|
v3.0.10
|
||||||
|
=======
|
||||||
|
|
||||||
|
Major Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- Fixing linting issues `#357 <https://github.com/ansible-middleware/keycloak/pull/357>`_
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- AMW-571 keycloak_identity_provider hide_on_login_page not working `#356 <https://github.com/ansible-middleware/keycloak/pull/356>`_
|
||||||
|
- Fixing vars naming issue `#359 <https://github.com/ansible-middleware/keycloak/pull/359>`_
|
||||||
|
- Removing from __future__ import annotations broke runtime type hints using Sequence and union syntax, causing sanity import failures and molecule module errors `#358 <https://github.com/ansible-middleware/keycloak/pull/358>`_
|
||||||
|
|
||||||
v3.0.9
|
v3.0.9
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|||||||
@@ -155,11 +155,11 @@ Note: when deploying clustered configurations, all hosts belonging to the cluste
|
|||||||
Execute the following command from the source root directory:
|
Execute the following command from the source root directory:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
ansible-playbook -i <ansible_hosts> playbooks/keycloak_realm.yml -e keycloak_admin_password=<changeme> -e keycloak_realm=test
|
ansible-playbook -i <ansible_hosts> playbooks/keycloak_realm.yml -e keycloak_realm_admin_password=<changeme> -e keycloak_realm_realm=test
|
||||||
```
|
```
|
||||||
|
|
||||||
- `keycloak_admin_password` password for the administration console user account.
|
- `keycloak_realm_admin_password` password for the administration console user account.
|
||||||
- `keycloak_realm` name of the realm to be created/used.
|
- `keycloak_realm_realm` name of the realm to be created/used.
|
||||||
- `ansible_hosts` is the inventory, below is an example inventory for deploying to localhost
|
- `ansible_hosts` is the inventory, below is an example inventory for deploying to localhost
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -674,6 +674,30 @@ releases:
|
|||||||
- 276.yaml
|
- 276.yaml
|
||||||
- 277.yaml
|
- 277.yaml
|
||||||
release_date: '2025-05-02'
|
release_date: '2025-05-02'
|
||||||
|
3.0.10:
|
||||||
|
changes:
|
||||||
|
major_changes:
|
||||||
|
- 'Fixing linting issues `#357 <https://github.com/ansible-middleware/keycloak/pull/357>`_
|
||||||
|
|
||||||
|
'
|
||||||
|
minor_changes:
|
||||||
|
- 'AMW-571 keycloak_identity_provider hide_on_login_page not working `#356 <https://github.com/ansible-middleware/keycloak/pull/356>`_
|
||||||
|
|
||||||
|
'
|
||||||
|
- 'Fixing vars naming issue `#359 <https://github.com/ansible-middleware/keycloak/pull/359>`_
|
||||||
|
|
||||||
|
'
|
||||||
|
- 'Removing from __future__ import annotations broke runtime type hints using
|
||||||
|
Sequence and union syntax, causing sanity import failures and molecule module
|
||||||
|
errors `#358 <https://github.com/ansible-middleware/keycloak/pull/358>`_
|
||||||
|
|
||||||
|
'
|
||||||
|
fragments:
|
||||||
|
- 356.yaml
|
||||||
|
- 357.yaml
|
||||||
|
- 358.yaml
|
||||||
|
- 359.yaml
|
||||||
|
release_date: '2026-06-25'
|
||||||
3.0.2:
|
3.0.2:
|
||||||
changes:
|
changes:
|
||||||
bugfixes:
|
bugfixes:
|
||||||
|
|||||||
@@ -44,7 +44,6 @@ extensions = [
|
|||||||
'sphinx.ext.autodoc',
|
'sphinx.ext.autodoc',
|
||||||
'sphinx.ext.intersphinx',
|
'sphinx.ext.intersphinx',
|
||||||
'sphinx_antsibull_ext',
|
'sphinx_antsibull_ext',
|
||||||
'ansible_basic_sphinx_ext',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
# Add any paths that contain templates here, relative to this directory.
|
# Add any paths that contain templates here, relative to this directory.
|
||||||
|
|||||||
@@ -1,10 +1,7 @@
|
|||||||
# ansible_basic_sphinx_ext still imports pkg_resources (removed in setuptools 82+).
|
|
||||||
setuptools>=70.0.0,<81.0.0
|
|
||||||
antsibull>=0.17.0
|
antsibull>=0.17.0
|
||||||
antsibull-docs
|
antsibull-docs
|
||||||
antsibull-changelog
|
antsibull-changelog
|
||||||
ansible-core>=2.16.0
|
ansible-core>=2.16.0
|
||||||
ansible-pygments
|
ansible-pygments
|
||||||
sphinx-rtd-theme
|
sphinx-rtd-theme
|
||||||
git+https://github.com/felixfontein/ansible-basic-sphinx-ext
|
|
||||||
myst-parser
|
myst-parser
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
namespace: middleware_automation
|
namespace: middleware_automation
|
||||||
name: keycloak
|
name: keycloak
|
||||||
version: "3.0.9"
|
version: "3.0.10"
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- Romain Pelisse <rpelisse@redhat.com>
|
- Romain Pelisse <rpelisse@redhat.com>
|
||||||
|
|||||||
@@ -14,32 +14,32 @@
|
|||||||
roles:
|
roles:
|
||||||
- role: keycloak_quarkus
|
- role: keycloak_quarkus
|
||||||
- role: keycloak_realm
|
- role: keycloak_realm
|
||||||
keycloak_url: "{{ keycloak_quarkus_hostname }}"
|
keycloak_realm_url: "{{ keycloak_quarkus_hostname }}"
|
||||||
keycloak_admin_user: "{{ keycloak_quarkus_bootstrap_admin_user }}"
|
keycloak_realm_admin_user: "{{ keycloak_quarkus_bootstrap_admin_user }}"
|
||||||
keycloak_admin_password: "{{ keycloak_quarkus_bootstrap_admin_password }}"
|
keycloak_realm_admin_password: "{{ keycloak_quarkus_bootstrap_admin_password }}"
|
||||||
keycloak_client_users:
|
keycloak_realm_client_users:
|
||||||
- username: TestUser
|
- username: TestUser
|
||||||
password: password
|
password: password
|
||||||
client_roles:
|
client_roles:
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleUser
|
role: TestRoleUser
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
- username: TestAdmin
|
- username: TestAdmin
|
||||||
password: password
|
password: password
|
||||||
client_roles:
|
client_roles:
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleUser
|
role: TestRoleUser
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleAdmin
|
role: TestRoleAdmin
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
keycloak_realm: TestRealm
|
keycloak_realm_realm: TestRealm
|
||||||
keycloak_clients:
|
keycloak_realm_clients:
|
||||||
- name: TestClient
|
- name: TestClient
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
public_client: "{{ keycloak_client_public }}"
|
public_client: "{{ keycloak_realm_client_public }}"
|
||||||
web_origins: "{{ keycloak_client_web_origins }}"
|
web_origins: "{{ keycloak_realm_client_web_origins }}"
|
||||||
users: "{{ keycloak_client_users }}"
|
users: "{{ keycloak_realm_client_users }}"
|
||||||
client_id: TestClient
|
client_id: TestClient
|
||||||
attributes:
|
attributes:
|
||||||
post.logout.redirect.uris: '/public/logout'
|
post.logout.redirect.uris: '/public/logout'
|
||||||
|
|||||||
@@ -19,30 +19,30 @@
|
|||||||
roles:
|
roles:
|
||||||
- role: keycloak_quarkus
|
- role: keycloak_quarkus
|
||||||
- role: keycloak_realm
|
- role: keycloak_realm
|
||||||
keycloak_url: "{{ keycloak_quarkus_hostname }}"
|
keycloak_realm_url: "{{ keycloak_quarkus_hostname }}"
|
||||||
keycloak_admin_user: "{{ keycloak_quarkus_bootstrap_admin_user }}"
|
keycloak_realm_admin_user: "{{ keycloak_quarkus_bootstrap_admin_user }}"
|
||||||
keycloak_admin_password: "{{ keycloak_quarkus_bootstrap_admin_password }}"
|
keycloak_realm_admin_password: "{{ keycloak_quarkus_bootstrap_admin_password }}"
|
||||||
keycloak_client_users:
|
keycloak_realm_client_users:
|
||||||
- username: TestUser
|
- username: TestUser
|
||||||
password: password
|
password: password
|
||||||
client_roles:
|
client_roles:
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleUser
|
role: TestRoleUser
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
- username: TestAdmin
|
- username: TestAdmin
|
||||||
password: password
|
password: password
|
||||||
client_roles:
|
client_roles:
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleUser
|
role: TestRoleUser
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleAdmin
|
role: TestRoleAdmin
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
keycloak_realm: TestRealm
|
keycloak_realm_realm: TestRealm
|
||||||
keycloak_clients:
|
keycloak_realm_clients:
|
||||||
- name: TestClient
|
- name: TestClient
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
public_client: "{{ keycloak_client_public }}"
|
public_client: "{{ keycloak_realm_client_public }}"
|
||||||
web_origins: "{{ keycloak_client_web_origins }}"
|
web_origins: "{{ keycloak_realm_client_web_origins }}"
|
||||||
users: "{{ keycloak_client_users }}"
|
users: "{{ keycloak_realm_client_users }}"
|
||||||
client_id: TestClient
|
client_id: TestClient
|
||||||
|
|||||||
@@ -23,6 +23,7 @@
|
|||||||
url: https://github.com/keycloak/keycloak/releases/download/26.6.2/keycloak-26.6.2.zip
|
url: https://github.com/keycloak/keycloak/releases/download/26.6.2/keycloak-26.6.2.zip
|
||||||
dest: /tmp/keycloak
|
dest: /tmp/keycloak
|
||||||
mode: '0640'
|
mode: '0640'
|
||||||
|
validate_certs: false
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
|||||||
@@ -253,6 +253,50 @@
|
|||||||
clientId: molecule-idp-client
|
clientId: molecule-idp-client
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
- name: keycloak_identity_provider — set hide_on_login via top-level param
|
||||||
|
middleware_automation.keycloak.keycloak_identity_provider:
|
||||||
|
realm: "{{ target_realm }}"
|
||||||
|
alias: "{{ idp }}"
|
||||||
|
hide_on_login: true
|
||||||
|
state: present
|
||||||
|
register: idp_hide_on_login_result
|
||||||
|
|
||||||
|
- name: Assert hide_on_login is set correctly in end_state
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that:
|
||||||
|
- idp_hide_on_login_result is changed
|
||||||
|
- idp_hide_on_login_result.end_state.hideOnLogin == true
|
||||||
|
- "'hide_on_login' not in (idp_hide_on_login_result.end_state.config | default({}))"
|
||||||
|
|
||||||
|
- name: keycloak_identity_provider — set hide_on_login idempotency check
|
||||||
|
middleware_automation.keycloak.keycloak_identity_provider:
|
||||||
|
realm: "{{ target_realm }}"
|
||||||
|
alias: "{{ idp }}"
|
||||||
|
hide_on_login: true
|
||||||
|
state: present
|
||||||
|
register: idp_hide_on_login_idempotent_result
|
||||||
|
|
||||||
|
- name: Assert hide_on_login idempotency (no change)
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that:
|
||||||
|
- idp_hide_on_login_idempotent_result is not changed
|
||||||
|
- idp_hide_on_login_idempotent_result.end_state.hideOnLogin == true
|
||||||
|
|
||||||
|
- name: keycloak_identity_provider — set hide_on_login via legacy config key (backward compat)
|
||||||
|
middleware_automation.keycloak.keycloak_identity_provider:
|
||||||
|
realm: "{{ target_realm }}"
|
||||||
|
alias: "{{ idp }}"
|
||||||
|
hide_on_login: false
|
||||||
|
state: present
|
||||||
|
register: idp_hide_on_login_off_result
|
||||||
|
|
||||||
|
- name: Assert hide_on_login can be toggled off via top-level param
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that:
|
||||||
|
- idp_hide_on_login_off_result is changed
|
||||||
|
- idp_hide_on_login_off_result.end_state.hideOnLogin == false
|
||||||
|
- "'hide_on_login_page' not in (idp_hide_on_login_off_result.end_state.config | default({}))"
|
||||||
|
|
||||||
- name: keycloak_clienttemplate — create client template
|
- name: keycloak_clienttemplate — create client template
|
||||||
middleware_automation.keycloak.keycloak_clienttemplate:
|
middleware_automation.keycloak.keycloak_clienttemplate:
|
||||||
realm: "{{ target_realm }}"
|
realm: "{{ target_realm }}"
|
||||||
|
|||||||
@@ -4,8 +4,6 @@
|
|||||||
vars_files:
|
vars_files:
|
||||||
- ../group_vars/all/vars.yml
|
- ../group_vars/all/vars.yml
|
||||||
vars:
|
vars:
|
||||||
rhn_username: "{{ lookup('env', 'rhn_username') | default('4278e994-7f90-46eb-b99c-90f2815b845f', true) }}"
|
|
||||||
rhn_password: "{{ lookup('env', 'rhn_password') | default('AHOLJo08ursGdWVm0F66iDR5Owk0CwpL', true) }}"
|
|
||||||
keycloak_quarkus_bootstrap_admin_password: "remembertochangeme"
|
keycloak_quarkus_bootstrap_admin_password: "remembertochangeme"
|
||||||
keycloak_admin_password: "remembertochangeme"
|
keycloak_admin_password: "remembertochangeme"
|
||||||
keycloak_quarkus_hostname: "http://instance:8080"
|
keycloak_quarkus_hostname: "http://instance:8080"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
keycloak_quarkus_show_deprecation_warnings: false
|
keycloak_quarkus_show_deprecation_warnings: false
|
||||||
keycloak_quarkus_bootstrap_admin_password: "remembertochangeme"
|
keycloak_quarkus_bootstrap_admin_password: "remembertochangeme"
|
||||||
keycloak_quarkus_bootstrap_admin_user: "remembertochangeme"
|
keycloak_quarkus_bootstrap_admin_user: "remembertochangeme"
|
||||||
keycloak_realm: TestRealm
|
keycloak_realm_realm: TestRealm
|
||||||
keycloak_quarkus_hostname: https://instance:8443
|
keycloak_quarkus_hostname: https://instance:8443
|
||||||
keycloak_quarkus_log: file
|
keycloak_quarkus_log: file
|
||||||
keycloak_quarkus_log_level: debug # needed for the verify step
|
keycloak_quarkus_log_level: debug # needed for the verify step
|
||||||
@@ -62,34 +62,34 @@
|
|||||||
roles:
|
roles:
|
||||||
- role: keycloak_quarkus
|
- role: keycloak_quarkus
|
||||||
- role: keycloak_realm
|
- role: keycloak_realm
|
||||||
keycloak_url: http://instance:8080
|
keycloak_realm_url: http://instance:8080
|
||||||
keycloak_admin_user: "{{ keycloak_quarkus_bootstrap_admin_user }}"
|
keycloak_realm_admin_user: "{{ keycloak_quarkus_bootstrap_admin_user }}"
|
||||||
keycloak_admin_password: "{{ keycloak_quarkus_bootstrap_admin_password }}"
|
keycloak_realm_admin_password: "{{ keycloak_quarkus_bootstrap_admin_password }}"
|
||||||
keycloak_client_default_roles:
|
keycloak_realm_client_default_roles:
|
||||||
- TestRoleAdmin
|
- TestRoleAdmin
|
||||||
- TestRoleUser
|
- TestRoleUser
|
||||||
keycloak_client_users:
|
keycloak_realm_client_users:
|
||||||
- username: TestUser
|
- username: TestUser
|
||||||
password: password
|
password: password
|
||||||
client_roles:
|
client_roles:
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleUser
|
role: TestRoleUser
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
- username: TestAdmin
|
- username: TestAdmin
|
||||||
password: password
|
password: password
|
||||||
client_roles:
|
client_roles:
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleUser
|
role: TestRoleUser
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleAdmin
|
role: TestRoleAdmin
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
keycloak_realm: TestRealm
|
keycloak_realm_realm: TestRealm
|
||||||
keycloak_clients:
|
keycloak_realm_clients:
|
||||||
- name: TestClient
|
- name: TestClient
|
||||||
roles: "{{ keycloak_client_default_roles }}"
|
roles: "{{ keycloak_realm_client_default_roles }}"
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
public_client: "{{ keycloak_client_public }}"
|
public_client: "{{ keycloak_realm_client_public }}"
|
||||||
web_origins: "{{ keycloak_client_web_origins }}"
|
web_origins: "{{ keycloak_realm_client_web_origins }}"
|
||||||
users: "{{ keycloak_client_users }}"
|
users: "{{ keycloak_realm_client_users }}"
|
||||||
client_id: TestClient
|
client_id: TestClient
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
keycloak_quarkus_show_deprecation_warnings: false
|
keycloak_quarkus_show_deprecation_warnings: false
|
||||||
keycloak_quarkus_bootstrap_admin_password: "remembertochangeme"
|
keycloak_quarkus_bootstrap_admin_password: "remembertochangeme"
|
||||||
keycloak_quarkus_bootstrap_admin_user: "remembertochangeme"
|
keycloak_quarkus_bootstrap_admin_user: "remembertochangeme"
|
||||||
keycloak_realm: TestRealm
|
keycloak_realm_realm: TestRealm
|
||||||
keycloak_quarkus_log: file
|
keycloak_quarkus_log: file
|
||||||
keycloak_quarkus_hostname: 'http://localhost:8080'
|
keycloak_quarkus_hostname: 'http://localhost:8080'
|
||||||
keycloak_quarkus_start_dev: True
|
keycloak_quarkus_start_dev: True
|
||||||
@@ -18,34 +18,34 @@
|
|||||||
roles:
|
roles:
|
||||||
- role: keycloak_quarkus
|
- role: keycloak_quarkus
|
||||||
- role: keycloak_realm
|
- role: keycloak_realm
|
||||||
keycloak_url: "{{ keycloak_quarkus_hostname }}"
|
keycloak_realm_url: "{{ keycloak_quarkus_hostname }}"
|
||||||
keycloak_admin_user: "{{ keycloak_quarkus_bootstrap_admin_user }}"
|
keycloak_realm_admin_user: "{{ keycloak_quarkus_bootstrap_admin_user }}"
|
||||||
keycloak_admin_password: "{{ keycloak_quarkus_bootstrap_admin_password }}"
|
keycloak_realm_admin_password: "{{ keycloak_quarkus_bootstrap_admin_password }}"
|
||||||
keycloak_client_default_roles:
|
keycloak_realm_client_default_roles:
|
||||||
- TestRoleAdmin
|
- TestRoleAdmin
|
||||||
- TestRoleUser
|
- TestRoleUser
|
||||||
keycloak_client_users:
|
keycloak_realm_client_users:
|
||||||
- username: TestUser
|
- username: TestUser
|
||||||
password: password
|
password: password
|
||||||
client_roles:
|
client_roles:
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleUser
|
role: TestRoleUser
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
- username: TestAdmin
|
- username: TestAdmin
|
||||||
password: password
|
password: password
|
||||||
client_roles:
|
client_roles:
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleUser
|
role: TestRoleUser
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
- client: TestClient
|
- client: TestClient
|
||||||
role: TestRoleAdmin
|
role: TestRoleAdmin
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
keycloak_realm: TestRealm
|
keycloak_realm_realm: TestRealm
|
||||||
keycloak_clients:
|
keycloak_realm_clients:
|
||||||
- name: TestClient
|
- name: TestClient
|
||||||
roles: "{{ keycloak_client_default_roles }}"
|
roles: "{{ keycloak_realm_client_default_roles }}"
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
public_client: "{{ keycloak_client_public }}"
|
public_client: "{{ keycloak_realm_client_public }}"
|
||||||
web_origins: "{{ keycloak_client_web_origins }}"
|
web_origins: "{{ keycloak_realm_client_web_origins }}"
|
||||||
users: "{{ keycloak_client_users }}"
|
users: "{{ keycloak_realm_client_users }}"
|
||||||
client_id: TestClient
|
client_id: TestClient
|
||||||
|
|||||||
22
molecule/sso_test/converge.yml
Normal file
22
molecule/sso_test/converge.yml
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
- name: Converge
|
||||||
|
hosts: all
|
||||||
|
vars_files:
|
||||||
|
- ../group_vars/all/vars.yml
|
||||||
|
vars:
|
||||||
|
keycloak_admin_password: "remembertochangeme"
|
||||||
|
keycloak_enable: true
|
||||||
|
keycloak_offline_install: false
|
||||||
|
roles:
|
||||||
|
- role: keycloak
|
||||||
|
- role: keycloak_realm
|
||||||
|
keycloak_realm_url: "http://instance:8080"
|
||||||
|
keycloak_realm_context: "/auth"
|
||||||
|
keycloak_realm_admin_user: "admin"
|
||||||
|
keycloak_realm_admin_password: "remembertochangeme"
|
||||||
|
keycloak_realm_realm: TestRealm
|
||||||
|
keycloak_realm_clients:
|
||||||
|
- name: TestClient
|
||||||
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
|
public_client: true
|
||||||
|
client_id: TestClient
|
||||||
31
molecule/sso_test/molecule.yml
Normal file
31
molecule/sso_test/molecule.yml
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
dependency:
|
||||||
|
name: galaxy
|
||||||
|
driver:
|
||||||
|
name: docker
|
||||||
|
platforms:
|
||||||
|
- name: instance
|
||||||
|
image: registry.access.redhat.com/ubi9/ubi-init:latest
|
||||||
|
command: /usr/sbin/init
|
||||||
|
privileged: true
|
||||||
|
pre_build_image: true
|
||||||
|
provisioner:
|
||||||
|
name: ansible
|
||||||
|
config_options:
|
||||||
|
defaults:
|
||||||
|
interpreter_python: auto_silent
|
||||||
|
callbacks_enabled: profile_tasks, timer, yaml
|
||||||
|
ssh_connection:
|
||||||
|
pipelining: false
|
||||||
|
playbooks:
|
||||||
|
prepare: prepare.yml
|
||||||
|
converge: converge.yml
|
||||||
|
verify: verify.yml
|
||||||
|
env:
|
||||||
|
ANSIBLE_ROLES_PATH: "../../roles"
|
||||||
|
inventory:
|
||||||
|
host_vars:
|
||||||
|
instance:
|
||||||
|
ansible_user: root
|
||||||
|
verifier:
|
||||||
|
name: ansible
|
||||||
11
molecule/sso_test/prepare.yml
Normal file
11
molecule/sso_test/prepare.yml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
- name: Prepare
|
||||||
|
hosts: all
|
||||||
|
vars_files:
|
||||||
|
- ../group_vars/all/vars.yml
|
||||||
|
gather_facts: yes
|
||||||
|
vars:
|
||||||
|
sudo_pkg_name: sudo
|
||||||
|
tasks:
|
||||||
|
- name: "Run preparation common to all scenario"
|
||||||
|
ansible.builtin.include_tasks: ../prepare.yml
|
||||||
26
molecule/sso_test/verify.yml
Normal file
26
molecule/sso_test/verify.yml
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
- name: Verify
|
||||||
|
hosts: all
|
||||||
|
vars:
|
||||||
|
keycloak_admin_password: "remembertochangeme"
|
||||||
|
keycloak_admin_user: "admin"
|
||||||
|
keycloak_uri: "http://localhost:8080"
|
||||||
|
keycloak_context: "/auth"
|
||||||
|
tasks:
|
||||||
|
- name: Populate service facts
|
||||||
|
ansible.builtin.service_facts:
|
||||||
|
- name: Check if keycloak service started
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that:
|
||||||
|
- ansible_facts.services["keycloak.service"]["state"] == "running"
|
||||||
|
- ansible_facts.services["keycloak.service"]["status"] == "enabled"
|
||||||
|
- name: Verify token api call
|
||||||
|
ansible.builtin.uri:
|
||||||
|
url: "{{ keycloak_uri }}{{ keycloak_context }}/realms/master/protocol/openid-connect/token"
|
||||||
|
method: POST
|
||||||
|
body: "client_id=admin-cli&username={{ keycloak_admin_user }}&password={{ keycloak_admin_password }}&grant_type=password"
|
||||||
|
validate_certs: no
|
||||||
|
register: keycloak_auth_response
|
||||||
|
until: keycloak_auth_response.status == 200
|
||||||
|
retries: 2
|
||||||
|
delay: 2
|
||||||
@@ -6,9 +6,9 @@
|
|||||||
ansible.builtin.include_role:
|
ansible.builtin.include_role:
|
||||||
name: keycloak_realm
|
name: keycloak_realm
|
||||||
vars:
|
vars:
|
||||||
keycloak_admin_password: "remembertochangeme"
|
keycloak_realm_admin_password: "remembertochangeme"
|
||||||
keycloak_realm: TestRealm
|
keycloak_realm_realm: TestRealm
|
||||||
keycloak_user_federation:
|
keycloak_realm_user_federation:
|
||||||
- realm: TestRealm
|
- realm: TestRealm
|
||||||
name: my-ldap
|
name: my-ldap
|
||||||
provider_id: ldap
|
provider_id: ldap
|
||||||
@@ -48,13 +48,13 @@
|
|||||||
ldap.full.name.attribute: cn
|
ldap.full.name.attribute: cn
|
||||||
read.only: true
|
read.only: true
|
||||||
write.only: false
|
write.only: false
|
||||||
keycloak_clients:
|
keycloak_realm_clients:
|
||||||
- name: TestClient1
|
- name: TestClient1
|
||||||
client_id: TestClient1
|
client_id: TestClient1
|
||||||
roles:
|
roles:
|
||||||
- TestClient1Admin
|
- TestClient1Admin
|
||||||
- TestClient1User
|
- TestClient1User
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
public_client: true
|
public_client: true
|
||||||
web_origins:
|
web_origins:
|
||||||
- http://testclient1origin/application
|
- http://testclient1origin/application
|
||||||
@@ -65,4 +65,4 @@
|
|||||||
client_roles:
|
client_roles:
|
||||||
- client: TestClient1
|
- client: TestClient1
|
||||||
role: TestClient1User
|
role: TestClient1User
|
||||||
realm: "{{ keycloak_realm }}"
|
realm: "{{ keycloak_realm_realm }}"
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
- name: Playbook for Keycloak Hosts
|
- name: Playbook for Keycloak Hosts
|
||||||
hosts: all
|
hosts: all
|
||||||
vars:
|
vars:
|
||||||
keycloak_admin_password: "remembertochangeme"
|
keycloak_realm_admin_password: "remembertochangeme"
|
||||||
keycloak_clients:
|
keycloak_realm_clients:
|
||||||
- name: TestClient1
|
- name: TestClient1
|
||||||
client_id: TestClient1
|
client_id: TestClient1
|
||||||
roles:
|
roles:
|
||||||
@@ -23,4 +23,4 @@
|
|||||||
realm: TestRealm
|
realm: TestRealm
|
||||||
roles:
|
roles:
|
||||||
- role: middleware_automation.keycloak.keycloak_realm
|
- role: middleware_automation.keycloak.keycloak_realm
|
||||||
keycloak_realm: TestRealm
|
keycloak_realm_realm: TestRealm
|
||||||
|
|||||||
@@ -6,12 +6,12 @@
|
|||||||
ansible.builtin.include_role:
|
ansible.builtin.include_role:
|
||||||
name: middleware_automation.keycloak.keycloak_realm
|
name: middleware_automation.keycloak.keycloak_realm
|
||||||
vars:
|
vars:
|
||||||
keycloak_admin_password: "remembertochangeme"
|
keycloak_realm_admin_password: "remembertochangeme"
|
||||||
keycloak_realm: TestRealm
|
keycloak_realm_realm: TestRealm
|
||||||
keycloak_client_default_roles:
|
keycloak_realm_client_default_roles:
|
||||||
- TestRoleAdmin
|
- TestRoleAdmin
|
||||||
- TestRoleUser
|
- TestRoleUser
|
||||||
keycloak_client_users:
|
keycloak_realm_client_users:
|
||||||
- username: TestUser
|
- username: TestUser
|
||||||
password: password
|
password: password
|
||||||
client_roles:
|
client_roles:
|
||||||
@@ -27,13 +27,13 @@
|
|||||||
- client: TestClient1
|
- client: TestClient1
|
||||||
role: TestRoleAdmin
|
role: TestRoleAdmin
|
||||||
realm: TestRealm
|
realm: TestRealm
|
||||||
keycloak_clients:
|
keycloak_realm_clients:
|
||||||
- name: TestClient1
|
- name: TestClient1
|
||||||
client_id: TestClient1
|
client_id: TestClient1
|
||||||
roles: "{{ keycloak_client_default_roles }}"
|
roles: "{{ keycloak_realm_client_default_roles }}"
|
||||||
realm: TestRealm
|
realm: TestRealm
|
||||||
public_client: true
|
public_client: true
|
||||||
web_origins:
|
web_origins:
|
||||||
- http://testclient1origin/application
|
- http://testclient1origin/application
|
||||||
- http://testclient1origin/other
|
- http://testclient1origin/other
|
||||||
users: "{{ keycloak_client_users }}"
|
users: "{{ keycloak_realm_client_users }}"
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
from __future__ import annotations
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
from __future__ import annotations
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
from __future__ import annotations
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,9 @@
|
|||||||
# Note that this module util is **PRIVATE** to the collection. It can have breaking changes at any time.
|
# Note that this module util is **PRIVATE** to the collection. It can have breaking changes at any time.
|
||||||
# Do not use this from other collections or standalone plugins/modules!
|
# Do not use this from other collections or standalone plugins/modules!
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
import typing as t
|
import typing as t
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
# BSD 2-Clause license (see LICENSES/BSD-2-Clause.txt)
|
# BSD 2-Clause license (see LICENSES/BSD-2-Clause.txt)
|
||||||
# SPDX-License-Identifier: BSD-2-Clause
|
# SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
import copy
|
import copy
|
||||||
import json
|
import json
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
import typing as t
|
import typing as t
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_authentication
|
module: keycloak_authentication
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
from __future__ import annotations
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
|
|||||||
@@ -4,7 +4,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
||||||
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_authentication_required_actions
|
module: keycloak_authentication_required_actions
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_authentication_v2
|
module: keycloak_authentication_v2
|
||||||
|
|||||||
@@ -4,7 +4,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
||||||
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_authz_authorization_scope
|
module: keycloak_authz_authorization_scope
|
||||||
|
|||||||
@@ -4,7 +4,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
||||||
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_authz_custom_policy
|
module: keycloak_authz_custom_policy
|
||||||
|
|||||||
@@ -4,7 +4,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
||||||
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_authz_permission
|
module: keycloak_authz_permission
|
||||||
|
|||||||
@@ -4,7 +4,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
||||||
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_authz_permission_info
|
module: keycloak_authz_permission_info
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_client
|
module: keycloak_client
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_client_rolemapping
|
module: keycloak_client_rolemapping
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_client_rolescope
|
module: keycloak_client_rolescope
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
from __future__ import annotations
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_client_scope_rolemappings
|
module: keycloak_client_scope_rolemappings
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_client_scope_type
|
module: keycloak_client_scope_type
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_clientsecret_info
|
module: keycloak_clientsecret_info
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_clientsecret_regenerate
|
module: keycloak_clientsecret_regenerate
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_clienttemplate
|
module: keycloak_clienttemplate
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
||||||
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_component
|
module: keycloak_component
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_component_info
|
module: keycloak_component_info
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_group
|
module: keycloak_group
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_identity_provider
|
module: keycloak_identity_provider
|
||||||
@@ -115,6 +117,15 @@ options:
|
|||||||
- authenticateByDefault
|
- authenticateByDefault
|
||||||
type: bool
|
type: bool
|
||||||
|
|
||||||
|
hide_on_login:
|
||||||
|
description:
|
||||||
|
- If hidden, login with this provider is possible only if requested explicitly, for example using the C(kc_idp_hint)
|
||||||
|
parameter.
|
||||||
|
aliases:
|
||||||
|
- hideOnLogin
|
||||||
|
- hide_on_login_page
|
||||||
|
type: bool
|
||||||
|
|
||||||
provider_id:
|
provider_id:
|
||||||
description:
|
description:
|
||||||
- Protocol used by this provider (supported values are V(oidc) or V(saml)).
|
- Protocol used by this provider (supported values are V(oidc) or V(saml)).
|
||||||
@@ -129,14 +140,6 @@ options:
|
|||||||
identity provider configuration through check-mode in the RV(existing) field.
|
identity provider configuration through check-mode in the RV(existing) field.
|
||||||
type: dict
|
type: dict
|
||||||
suboptions:
|
suboptions:
|
||||||
hide_on_login_page:
|
|
||||||
description:
|
|
||||||
- If hidden, login with this provider is possible only if requested explicitly, for example using the C(kc_idp_hint)
|
|
||||||
parameter.
|
|
||||||
aliases:
|
|
||||||
- hideOnLoginPage
|
|
||||||
type: bool
|
|
||||||
|
|
||||||
gui_order:
|
gui_order:
|
||||||
description:
|
description:
|
||||||
- Number defining order of the provider in GUI (for example, on Login page).
|
- Number defining order of the provider in GUI (for example, on Login page).
|
||||||
@@ -569,6 +572,7 @@ def main():
|
|||||||
alias=dict(type="str", required=True),
|
alias=dict(type="str", required=True),
|
||||||
add_read_token_role_on_create=dict(type="bool", aliases=["addReadTokenRoleOnCreate"]),
|
add_read_token_role_on_create=dict(type="bool", aliases=["addReadTokenRoleOnCreate"]),
|
||||||
authenticate_by_default=dict(type="bool", aliases=["authenticateByDefault"]),
|
authenticate_by_default=dict(type="bool", aliases=["authenticateByDefault"]),
|
||||||
|
hide_on_login=dict(type="bool", aliases=["hideOnLogin", "hide_on_login_page"]),
|
||||||
config=dict(type="dict"),
|
config=dict(type="dict"),
|
||||||
display_name=dict(type="str", aliases=["displayName"]),
|
display_name=dict(type="str", aliases=["displayName"]),
|
||||||
enabled=dict(type="bool"),
|
enabled=dict(type="bool"),
|
||||||
@@ -608,6 +612,20 @@ def main():
|
|||||||
state = module.params.get("state")
|
state = module.params.get("state")
|
||||||
config = module.params.get("config")
|
config = module.params.get("config")
|
||||||
|
|
||||||
|
if config is not None:
|
||||||
|
for legacy_key in ("hide_on_login_page", "hideOnLoginPage"):
|
||||||
|
if legacy_key in config:
|
||||||
|
module.deprecate(
|
||||||
|
f"Passing '{legacy_key}' inside 'config' is deprecated. "
|
||||||
|
"Use the top-level 'hide_on_login' parameter instead.",
|
||||||
|
version="4.0.0",
|
||||||
|
collection_name="middleware_automation.keycloak",
|
||||||
|
)
|
||||||
|
if module.params.get("hide_on_login") is None:
|
||||||
|
module.params["hide_on_login"] = config.pop(legacy_key)
|
||||||
|
else:
|
||||||
|
config.pop(legacy_key)
|
||||||
|
|
||||||
fetch_identity_provider_wellknown_config(kc, config)
|
fetch_identity_provider_wellknown_config(kc, config)
|
||||||
|
|
||||||
# Filter and map the parameters names that apply to the identity provider.
|
# Filter and map the parameters names that apply to the identity provider.
|
||||||
|
|||||||
@@ -4,7 +4,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_realm
|
module: keycloak_realm
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_realm_info
|
module: keycloak_realm_info
|
||||||
|
|||||||
@@ -4,7 +4,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
|
||||||
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_realm_key
|
module: keycloak_realm_key
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_realm_keys_metadata_info
|
module: keycloak_realm_keys_metadata_info
|
||||||
|
|||||||
@@ -4,7 +4,9 @@
|
|||||||
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
# https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_realm_localization
|
module: keycloak_realm_localization
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_realm_rolemapping
|
module: keycloak_realm_rolemapping
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_role
|
module: keycloak_role
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_user
|
module: keycloak_user
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_user_execute_actions_email
|
module: keycloak_user_execute_actions_email
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_user_federation
|
module: keycloak_user_federation
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
# Copyright (c) 2022, Dušan Marković (@bratwurzt)
|
# Copyright (c) 2022, Dušan Marković (@bratwurzt)
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_user_rolemapping
|
module: keycloak_user_rolemapping
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = r"""
|
DOCUMENTATION = r"""
|
||||||
module: keycloak_userprofile
|
module: keycloak_userprofile
|
||||||
|
|||||||
@@ -388,6 +388,6 @@ argument_specs:
|
|||||||
description: "Red Hat SSO patch archive filename"
|
description: "Red Hat SSO patch archive filename"
|
||||||
type: "str"
|
type: "str"
|
||||||
sso_product_category:
|
sso_product_category:
|
||||||
default: "core.service.rhsso"
|
default: "CORE.SERVICE.RHSSO"
|
||||||
description: "JBossNetwork API category for Single Sign-On"
|
description: "Unified Downloads API category for Single Sign-On"
|
||||||
type: "str"
|
type: "str"
|
||||||
|
|||||||
@@ -1,24 +1,24 @@
|
|||||||
---
|
---
|
||||||
- name: "Check if packages are already installed" # noqa command-instead-of-module this runs faster
|
- name: "Check if packages are already installed" # noqa command-instead-of-module this runs faster
|
||||||
ansible.builtin.command: "rpm -q {{ packages_list | join(' ') }}"
|
ansible.builtin.command: "rpm -q {{ packages_list | join(' ') }}"
|
||||||
register: rpm_info
|
register: keycloak_rpm_info
|
||||||
changed_when: false
|
changed_when: false
|
||||||
failed_when: false
|
failed_when: false
|
||||||
when: ansible_facts.os_family == "RedHat"
|
when: ansible_facts.os_family == "RedHat"
|
||||||
|
|
||||||
- name: "Add missing packages to the yum install list"
|
- name: "Add missing packages to the yum install list"
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
packages_to_install: "{{ packages_to_install | default([]) + rpm_info.stdout_lines | \
|
keycloak_packages_to_install: "{{ keycloak_packages_to_install | default([]) + keycloak_rpm_info.stdout_lines | \
|
||||||
map('regex_findall', 'package (.+) is not installed$') | default([]) | flatten }}"
|
map('regex_findall', 'package (.+) is not installed$') | default([]) | flatten }}"
|
||||||
when: ansible_facts.os_family == "RedHat"
|
when: ansible_facts.os_family == "RedHat"
|
||||||
|
|
||||||
- name: "Install packages: {{ packages_to_install }}"
|
- name: "Install packages: {{ keycloak_packages_to_install }}"
|
||||||
become: "{{ keycloak_fastpackages_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_fastpackages_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.dnf:
|
ansible.builtin.dnf:
|
||||||
name: "{{ packages_to_install }}"
|
name: "{{ keycloak_packages_to_install }}"
|
||||||
state: present
|
state: present
|
||||||
when:
|
when:
|
||||||
- packages_to_install | default([]) | length > 0
|
- keycloak_packages_to_install | default([]) | length > 0
|
||||||
- ansible_facts.os_family == "RedHat"
|
- ansible_facts.os_family == "RedHat"
|
||||||
|
|
||||||
- name: "Install packages: {{ packages_list }}"
|
- name: "Install packages: {{ packages_list }}"
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
enabled: true
|
enabled: true
|
||||||
state: started
|
state: started
|
||||||
|
|
||||||
- name: "Configure firewall ports for {{ keycloak.service_name }}"
|
- name: "Configure firewall ports for {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_firewalld_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_firewalld_require_privilege_escalation | default(true) }}"
|
||||||
ansible.posix.firewalld:
|
ansible.posix.firewalld:
|
||||||
port: "{{ item }}"
|
port: "{{ item }}"
|
||||||
|
|||||||
@@ -14,18 +14,18 @@
|
|||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ keycloak_jboss_home }}"
|
path: "{{ keycloak_jboss_home }}"
|
||||||
register: existing_deploy
|
register: keycloak_existing_deploy
|
||||||
|
|
||||||
- name: Stop and restart if existing deployment exists and install forced
|
- name: Stop and restart if existing deployment exists and install forced
|
||||||
when: existing_deploy.stat.exists and keycloak_force_install | bool
|
when: keycloak_existing_deploy.stat.exists and keycloak_force_install | bool
|
||||||
block:
|
block:
|
||||||
- name: "Stop the old {{ keycloak.service_name }} service"
|
- name: "Stop the old service: {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
failed_when: false
|
failed_when: false
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: keycloak
|
name: keycloak
|
||||||
state: stopped
|
state: stopped
|
||||||
- name: "Remove the old {{ keycloak.service_name }} deployment"
|
- name: "Remove the old deployment: {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ keycloak_jboss_home }}"
|
path: "{{ keycloak_jboss_home }}"
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ keycloak_jboss_home }}"
|
path: "{{ keycloak_jboss_home }}"
|
||||||
|
|
||||||
- name: "Create service user/group for {{ keycloak.service_name }}"
|
- name: "Create service user/group for {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.user:
|
ansible.builtin.user:
|
||||||
name: "{{ keycloak_service_user }}"
|
name: "{{ keycloak_service_user }}"
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
system: true
|
system: true
|
||||||
create_home: false
|
create_home: false
|
||||||
|
|
||||||
- name: "Create install location for {{ keycloak.service_name }}"
|
- name: "Create install location for {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
dest: "{{ keycloak_dest }}"
|
dest: "{{ keycloak_dest }}"
|
||||||
@@ -65,34 +65,35 @@
|
|||||||
## check remote archive
|
## check remote archive
|
||||||
- name: Set download archive path
|
- name: Set download archive path
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
archive: "{{ keycloak_dest }}/{{ keycloak.bundle }}"
|
keycloak_archive_full_path: "{{ keycloak_dest }}/{{ keycloak_archive }}"
|
||||||
|
|
||||||
- name: Check download archive path
|
- name: Check download archive path
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ archive }}"
|
path: "{{ keycloak_archive_full_path }}"
|
||||||
register: archive_path
|
register: keycloak_archive_path
|
||||||
|
|
||||||
## download to controller
|
## download to controller
|
||||||
- name: Check local download archive path
|
- name: Check local download archive path
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ lookup('env', 'PWD') }}"
|
path: "{{ lookup('env', 'PWD') }}"
|
||||||
register: local_path
|
register: keycloak_local_path
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Download keycloak archive
|
- name: Download keycloak archive
|
||||||
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
|
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
|
||||||
url: "{{ keycloak_download_url }}"
|
url: "{{ keycloak_download_url }}"
|
||||||
dest: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
dest: "{{ keycloak_local_path.stat.path }}/{{ keycloak_archive }}"
|
||||||
mode: '0644'
|
mode: '0644'
|
||||||
url_username: "{{ keycloak_binary_download_user | default(omit) }}"
|
url_username: "{{ keycloak_binary_download_user | default(omit) }}"
|
||||||
url_password: "{{ keycloak_binary_download_pass | default(omit) }}"
|
url_password: "{{ keycloak_binary_download_pass | default(omit) }}"
|
||||||
|
validate_certs: false
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
when:
|
when:
|
||||||
- archive_path is defined
|
- keycloak_archive_path is defined
|
||||||
- archive_path.stat is defined
|
- keycloak_archive_path.stat is defined
|
||||||
- not archive_path.stat.exists
|
- not keycloak_archive_path.stat.exists
|
||||||
- not sso_enable is defined or not sso_enable
|
- not sso_enable is defined or not sso_enable
|
||||||
- not keycloak_offline_install
|
- not keycloak_offline_install
|
||||||
|
|
||||||
@@ -100,9 +101,9 @@
|
|||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
when:
|
when:
|
||||||
- archive_path is defined
|
- keycloak_archive_path is defined
|
||||||
- archive_path.stat is defined
|
- keycloak_archive_path.stat is defined
|
||||||
- not archive_path.stat.exists
|
- not keycloak_archive_path.stat.exists
|
||||||
- sso_enable is defined and sso_enable
|
- sso_enable is defined and sso_enable
|
||||||
- not keycloak_offline_install
|
- not keycloak_offline_install
|
||||||
block:
|
block:
|
||||||
@@ -113,14 +114,18 @@
|
|||||||
product_type: DISTRIBUTION
|
product_type: DISTRIBUTION
|
||||||
product_version: "{{ sso_version.split('.')[:2] | join('.') }}"
|
product_version: "{{ sso_version.split('.')[:2] | join('.') }}"
|
||||||
product_category: "{{ sso_product_category }}"
|
product_category: "{{ sso_product_category }}"
|
||||||
register: rhn_products
|
validate_certs: false
|
||||||
|
register: keycloak_rhn_products
|
||||||
no_log: "{{ omit_rhn_output | default(true) }}"
|
no_log: "{{ omit_rhn_output | default(true) }}"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: Determine install zipfile from search results
|
- name: Determine install zipfile from search results
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
rhn_filtered_products: "{{ rhn_products.results | selectattr('file_name', 'match', '[^/]*/' + sso_archive + '$') }}"
|
keycloak_rhn_filtered_products: >-
|
||||||
|
{{ keycloak_rhn_products.results
|
||||||
|
| selectattr('file_name', 'search', 'rh-sso-' + sso_version + '-server-dist.zip$')
|
||||||
|
| list }}
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
@@ -128,8 +133,9 @@
|
|||||||
middleware_automation.common.product_download: # noqa risky-file-permissions delegated, uses controller host user
|
middleware_automation.common.product_download: # noqa risky-file-permissions delegated, uses controller host user
|
||||||
client_id: "{{ rhn_username }}"
|
client_id: "{{ rhn_username }}"
|
||||||
client_secret: "{{ rhn_password }}"
|
client_secret: "{{ rhn_password }}"
|
||||||
product_id: "{{ (rhn_filtered_products | first).id }}"
|
product_id: "{{ (keycloak_rhn_filtered_products | first).id }}"
|
||||||
dest: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
dest: "{{ keycloak_local_path.stat.path }}/{{ keycloak_archive }}"
|
||||||
|
validate_certs: false
|
||||||
no_log: "{{ omit_rhn_output | default(true) }}"
|
no_log: "{{ omit_rhn_output | default(true) }}"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
@@ -137,68 +143,69 @@
|
|||||||
- name: Download rhsso archive from alternate location
|
- name: Download rhsso archive from alternate location
|
||||||
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
|
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
|
||||||
url: "{{ keycloak_rhsso_download_url }}"
|
url: "{{ keycloak_rhsso_download_url }}"
|
||||||
dest: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
dest: "{{ keycloak_local_path.stat.path }}/{{ keycloak_archive }}"
|
||||||
mode: '0644'
|
mode: '0644'
|
||||||
|
validate_certs: false
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
when:
|
when:
|
||||||
- archive_path is defined
|
- keycloak_archive_path is defined
|
||||||
- archive_path.stat is defined
|
- keycloak_archive_path.stat is defined
|
||||||
- not archive_path.stat.exists
|
- not keycloak_archive_path.stat.exists
|
||||||
- sso_enable is defined and sso_enable
|
- sso_enable is defined and sso_enable
|
||||||
- not keycloak_offline_install
|
- not keycloak_offline_install
|
||||||
- keycloak_rhsso_download_url is defined
|
- keycloak_rhsso_download_url is defined
|
||||||
|
|
||||||
- name: Check downloaded archive
|
- name: Check downloaded archive
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
path: "{{ keycloak_local_path.stat.path }}/{{ keycloak_archive }}"
|
||||||
register: local_archive_path
|
register: keycloak_local_archive_path
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
## copy and unpack
|
## copy and unpack
|
||||||
- name: Copy archive to target nodes
|
- name: Copy archive to target nodes
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
src: "{{ keycloak_local_path.stat.path }}/{{ keycloak_archive }}"
|
||||||
dest: "{{ archive }}"
|
dest: "{{ keycloak_archive_full_path }}"
|
||||||
owner: "{{ keycloak_service_user }}"
|
owner: "{{ keycloak_service_user }}"
|
||||||
group: "{{ keycloak_service_group }}"
|
group: "{{ keycloak_service_group }}"
|
||||||
mode: '0640'
|
mode: '0640'
|
||||||
register: new_version_downloaded
|
register: keycloak_new_version_downloaded
|
||||||
when:
|
when:
|
||||||
- not archive_path.stat.exists
|
- not keycloak_archive_path.stat.exists
|
||||||
- local_archive_path.stat is defined
|
- keycloak_local_archive_path.stat is defined
|
||||||
- local_archive_path.stat.exists
|
- keycloak_local_archive_path.stat.exists
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
- name: "Check target directory: {{ keycloak.home }}"
|
- name: "Check target directory: {{ keycloak_config.home }}"
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ keycloak.home }}"
|
path: "{{ keycloak_config.home }}"
|
||||||
register: path_to_workdir
|
register: keycloak_path_to_workdir
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
- name: "Extract {{ keycloak_service_desc }} archive on target"
|
- name: "Extract archive on target: {{ keycloak_service_desc }}"
|
||||||
ansible.builtin.unarchive:
|
ansible.builtin.unarchive:
|
||||||
remote_src: true
|
remote_src: true
|
||||||
src: "{{ archive }}"
|
src: "{{ keycloak_archive_full_path }}"
|
||||||
dest: "{{ keycloak_dest }}"
|
dest: "{{ keycloak_dest }}"
|
||||||
creates: "{{ keycloak.home }}"
|
creates: "{{ keycloak_config.home }}"
|
||||||
owner: "{{ keycloak_service_user }}"
|
owner: "{{ keycloak_service_user }}"
|
||||||
group: "{{ keycloak_service_group }}"
|
group: "{{ keycloak_service_group }}"
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
when:
|
when:
|
||||||
- new_version_downloaded.changed or not path_to_workdir.stat.exists
|
- keycloak_new_version_downloaded.changed or not keycloak_path_to_workdir.stat.exists
|
||||||
notify:
|
notify:
|
||||||
- restart keycloak
|
- restart keycloak
|
||||||
|
|
||||||
- name: Inform decompression was not executed
|
- name: Inform decompression was not executed
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg: "{{ keycloak.home }} already exists and version unchanged, skipping decompression"
|
msg: "{{ keycloak_config.home }} already exists and version unchanged, skipping decompression"
|
||||||
when:
|
when:
|
||||||
- not new_version_downloaded.changed and path_to_workdir.stat.exists
|
- not keycloak_new_version_downloaded.changed and keycloak_path_to_workdir.stat.exists
|
||||||
|
|
||||||
- name: "Reown installation directory to {{ keycloak_service_user }}"
|
- name: "Reown installation directory to {{ keycloak_service_user }}"
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ keycloak.home }}"
|
path: "{{ keycloak_config.home }}"
|
||||||
owner: "{{ keycloak_service_user }}"
|
owner: "{{ keycloak_service_user }}"
|
||||||
group: "{{ keycloak_service_group }}"
|
group: "{{ keycloak_service_group }}"
|
||||||
recurse: true
|
recurse: true
|
||||||
@@ -206,17 +213,17 @@
|
|||||||
changed_when: false
|
changed_when: false
|
||||||
|
|
||||||
- name: Ensure permissions are correct on existing deploy
|
- name: Ensure permissions are correct on existing deploy
|
||||||
ansible.builtin.command: chown -R "{{ keycloak_service_user }}:{{ keycloak_service_group }}" "{{ keycloak.home }}"
|
ansible.builtin.command: chown -R "{{ keycloak_service_user }}:{{ keycloak_service_group }}" "{{ keycloak_config.home }}"
|
||||||
when: keycloak_service_runas
|
when: keycloak_service_runas
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
|
||||||
# driver and configuration
|
# driver and configuration
|
||||||
- name: "Install {{ keycloak_jdbc_engine }} driver"
|
- name: "Install database driver: {{ keycloak_jdbc_engine }}"
|
||||||
ansible.builtin.include_tasks: jdbc_driver.yml
|
ansible.builtin.include_tasks: jdbc_driver.yml
|
||||||
when: keycloak_jdbc[keycloak_jdbc_engine].enabled
|
when: keycloak_jdbc[keycloak_jdbc_engine].enabled
|
||||||
|
|
||||||
- name: "Deploy custom {{ keycloak.service_name }} config to {{ keycloak_config_path_to_standalone_xml }} from {{ keycloak_config_override_template }}"
|
- name: "Deploy custom config: {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: "templates/{{ keycloak_config_override_template }}"
|
src: "templates/{{ keycloak_config_override_template }}"
|
||||||
@@ -226,9 +233,9 @@
|
|||||||
mode: '0640'
|
mode: '0640'
|
||||||
notify:
|
notify:
|
||||||
- restart keycloak
|
- restart keycloak
|
||||||
when: keycloak_config_override_template | length > 0
|
when: (keycloak_config_override_template | default('', true)) | length > 0
|
||||||
|
|
||||||
- name: "Deploy standalone {{ keycloak.service_name }} config to {{ keycloak_config_path_to_standalone_xml }}"
|
- name: "Deploy standalone config: {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: templates/standalone.xml.j2
|
src: templates/standalone.xml.j2
|
||||||
@@ -240,7 +247,7 @@
|
|||||||
- restart keycloak
|
- restart keycloak
|
||||||
when:
|
when:
|
||||||
- not keycloak_ha_enabled
|
- not keycloak_ha_enabled
|
||||||
- keycloak_config_override_template | length == 0
|
- (keycloak_config_override_template | default('', true)) | length == 0
|
||||||
|
|
||||||
- name: Create tcpping cluster node list
|
- name: Create tcpping cluster node list
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
@@ -256,7 +263,7 @@
|
|||||||
loop: "{{ ansible_play_batch }}"
|
loop: "{{ ansible_play_batch }}"
|
||||||
when: keycloak_ha_enabled and keycloak_ha_discovery == 'TCPPING'
|
when: keycloak_ha_enabled and keycloak_ha_discovery == 'TCPPING'
|
||||||
|
|
||||||
- name: "Deploy HA {{ keycloak.service_name }} config to {{ keycloak_config_path_to_standalone_xml }}"
|
- name: "Deploy HA config: {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: templates/standalone-ha.xml.j2
|
src: templates/standalone-ha.xml.j2
|
||||||
@@ -269,9 +276,9 @@
|
|||||||
when:
|
when:
|
||||||
- keycloak_ha_enabled
|
- keycloak_ha_enabled
|
||||||
- not keycloak_remote_cache_enabled
|
- not keycloak_remote_cache_enabled
|
||||||
- keycloak_config_override_template | length == 0
|
- (keycloak_config_override_template | default('', true)) | length == 0
|
||||||
|
|
||||||
- name: "Deploy HA {{ keycloak.service_name }} config with infinispan remote cache store to {{ keycloak_config_path_to_standalone_xml }}"
|
- name: "Deploy HA config with infinispan: {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: templates/standalone-infinispan.xml.j2
|
src: templates/standalone-infinispan.xml.j2
|
||||||
@@ -284,7 +291,7 @@
|
|||||||
when:
|
when:
|
||||||
- keycloak_ha_enabled
|
- keycloak_ha_enabled
|
||||||
- keycloak_remote_cache_enabled
|
- keycloak_remote_cache_enabled
|
||||||
- keycloak_config_override_template | length == 0
|
- (keycloak_config_override_template | default('', true)) | length == 0
|
||||||
|
|
||||||
- name: "Deploy profile.properties file to {{ keycloak_config_path_to_properties }}"
|
- name: "Deploy profile.properties file to {{ keycloak_config_path_to_properties }}"
|
||||||
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_install_require_privilege_escalation | default(true) }}"
|
||||||
@@ -296,4 +303,4 @@
|
|||||||
mode: '0640'
|
mode: '0640'
|
||||||
notify:
|
notify:
|
||||||
- restart keycloak
|
- restart keycloak
|
||||||
when: keycloak_features | length > 0
|
when: (keycloak_features | default([], true)) | length > 0
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
packages_list:
|
packages_list:
|
||||||
- iptables
|
- iptables
|
||||||
|
|
||||||
- name: "Configure firewall ports for {{ keycloak.service_name }}"
|
- name: "Configure firewall ports for {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_iptables_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_iptables_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.iptables:
|
ansible.builtin.iptables:
|
||||||
destination_port: "{{ item }}"
|
destination_port: "{{ item }}"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
- name: "Check module directory: {{ keycloak_jdbc[keycloak_jdbc_engine].driver_module_dir }}"
|
- name: "Check module directory: {{ keycloak_jdbc[keycloak_jdbc_engine].driver_module_dir }}"
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ keycloak_jdbc[keycloak_jdbc_engine].driver_module_dir }}"
|
path: "{{ keycloak_jdbc[keycloak_jdbc_engine].driver_module_dir }}"
|
||||||
register: dest_path
|
register: keycloak_dest_path
|
||||||
become: "{{ keycloak_jdbc_driver_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_jdbc_driver_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
- name: "Set up module dir for JDBC Driver {{ keycloak_jdbc[keycloak_jdbc_engine].driver_module_name }}"
|
- name: "Set up module dir for JDBC Driver {{ keycloak_jdbc[keycloak_jdbc_engine].driver_module_name }}"
|
||||||
|
|||||||
@@ -66,7 +66,7 @@
|
|||||||
retries: 2
|
retries: 2
|
||||||
delay: 2
|
delay: 2
|
||||||
rescue:
|
rescue:
|
||||||
- name: "Create {{ keycloak.service_name }} admin user"
|
- name: "Create admin user: {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
args:
|
args:
|
||||||
argv:
|
argv:
|
||||||
@@ -76,11 +76,11 @@
|
|||||||
- "-p{{ keycloak_admin_password }}"
|
- "-p{{ keycloak_admin_password }}"
|
||||||
changed_when: true
|
changed_when: true
|
||||||
become: "{{ keycloak_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_require_privilege_escalation | default(true) }}"
|
||||||
- name: "Restart {{ keycloak.service_name }}"
|
- name: "Restart service: {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.include_tasks: tasks/restart_keycloak.yml
|
ansible.builtin.include_tasks: tasks/restart_keycloak.yml
|
||||||
- name: "Wait until {{ keycloak.service_name }} becomes active {{ keycloak.health_url }}"
|
- name: "Wait until service becomes active: {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
url: "{{ keycloak.health_url }}"
|
url: "{{ keycloak_config.health_url }}"
|
||||||
register: keycloak_status
|
register: keycloak_status
|
||||||
until: keycloak_status.status == 200
|
until: keycloak_status.status == 200
|
||||||
retries: 25
|
retries: 25
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
- name: Validate admin console password
|
- name: Validate admin console password
|
||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- keycloak_admin_password | length > 12
|
- (keycloak_admin_password | default('', true)) | length > 12
|
||||||
quiet: true
|
quiet: true
|
||||||
fail_msg: >
|
fail_msg: >
|
||||||
The console administrator password is empty or invalid. Please set the keycloak_admin_password variable to a 12+ char long string
|
The console administrator password is empty or invalid. Please set the keycloak_admin_password variable to a 12+ char long string
|
||||||
@@ -31,9 +31,9 @@
|
|||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- keycloak_jdbc_engine is defined and keycloak_jdbc_engine in [ 'postgres', 'mariadb', 'sqlserver' ]
|
- keycloak_jdbc_engine is defined and keycloak_jdbc_engine in [ 'postgres', 'mariadb', 'sqlserver' ]
|
||||||
- keycloak_jdbc_url | length > 0
|
- (keycloak_jdbc_url | default('', true)) | length > 0
|
||||||
- keycloak_db_user | length > 0
|
- (keycloak_db_user | default('', true)) | length > 0
|
||||||
- keycloak_db_pass | length > 0
|
- (keycloak_db_pass | default('', true)) | length > 0
|
||||||
quiet: true
|
quiet: true
|
||||||
fail_msg: "Configuration for the JDBC persistence is invalid or incomplete"
|
fail_msg: "Configuration for the JDBC persistence is invalid or incomplete"
|
||||||
success_msg: "Configuring JDBC persistence using {{ keycloak_jdbc_engine }} database"
|
success_msg: "Configuring JDBC persistence using {{ keycloak_jdbc_engine }} database"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: "Restart and enable {{ keycloak.service_name }} service"
|
- name: "Restart and enable service: {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: keycloak
|
name: keycloak
|
||||||
enabled: true
|
enabled: true
|
||||||
@@ -9,9 +9,9 @@
|
|||||||
delegate_to: "{{ ansible_play_hosts | first }}"
|
delegate_to: "{{ ansible_play_hosts | first }}"
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: "Wait until {{ keycloak.service_name }} becomes active {{ keycloak.health_url }}"
|
- name: "Wait until service becomes active: {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
url: "{{ keycloak.health_url }}"
|
url: "{{ keycloak_config.health_url }}"
|
||||||
register: keycloak_status
|
register: keycloak_status
|
||||||
until: keycloak_status.status == 200
|
until: keycloak_status.status == 200
|
||||||
delegate_to: "{{ ansible_play_hosts | first }}"
|
delegate_to: "{{ ansible_play_hosts | first }}"
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
retries: "{{ keycloak_service_start_retries }}"
|
retries: "{{ keycloak_service_start_retries }}"
|
||||||
delay: "{{ keycloak_service_start_delay }}"
|
delay: "{{ keycloak_service_start_delay }}"
|
||||||
|
|
||||||
- name: "Restart and enable {{ keycloak.service_name }} service"
|
- name: "Restart and enable service (remaining nodes): {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: keycloak
|
name: keycloak
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|||||||
@@ -8,6 +8,6 @@
|
|||||||
|
|
||||||
- name: "Execute CLI query: {{ cli_query }}"
|
- name: "Execute CLI query: {{ cli_query }}"
|
||||||
ansible.builtin.command: >
|
ansible.builtin.command: >
|
||||||
{{ keycloak.cli_path }} --connect --command='{{ cli_query }}' --controller={{ keycloak_host }}:{{ keycloak_management_http_port }}
|
{{ keycloak_config.cli_path }} --connect --command='{{ cli_query }}' --controller={{ keycloak_host }}:{{ keycloak_management_http_port }}
|
||||||
changed_when: false
|
changed_when: false
|
||||||
register: cli_result
|
register: keycloak_cli_result
|
||||||
|
|||||||
@@ -2,15 +2,15 @@
|
|||||||
## check remote patch archive
|
## check remote patch archive
|
||||||
- name: Set download patch archive path
|
- name: Set download patch archive path
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
patch_archive: "{{ keycloak_dest }}/{{ sso_patch_bundle }}"
|
keycloak_patch_archive: "{{ keycloak_dest }}/{{ sso_patch_bundle }}"
|
||||||
patch_bundle: "{{ sso_patch_bundle }}"
|
keycloak_patch_bundle: "{{ sso_patch_bundle }}"
|
||||||
patch_version: "{{ sso_patch_version }}"
|
keycloak_patch_version: "{{ sso_patch_version }}"
|
||||||
when: sso_patch_version is defined
|
when: sso_patch_version is defined
|
||||||
|
|
||||||
- name: Check download patch archive path
|
- name: Check download patch archive path
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ patch_archive }}"
|
path: "{{ keycloak_patch_archive }}"
|
||||||
register: patch_archive_path
|
register: keycloak_patch_archive_path
|
||||||
when: sso_patch_version is defined
|
when: sso_patch_version is defined
|
||||||
become: "{{ keycloak_rhsso_patch_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_rhsso_patch_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
@@ -29,41 +29,42 @@
|
|||||||
product_type: BUGFIX
|
product_type: BUGFIX
|
||||||
product_version: "{{ sso_version.split('.')[:2] | join('.') }}"
|
product_version: "{{ sso_version.split('.')[:2] | join('.') }}"
|
||||||
product_category: "{{ sso_product_category }}"
|
product_category: "{{ sso_product_category }}"
|
||||||
register: rhn_products
|
validate_certs: false
|
||||||
|
register: keycloak_rhn_products
|
||||||
no_log: "{{ omit_rhn_output | default(true) }}"
|
no_log: "{{ omit_rhn_output | default(true) }}"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: Determine patch versions list
|
- name: Determine patch versions list
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
filtered_versions: "{{ rhn_products.results | map(attribute='file_name') | \
|
keycloak_filtered_versions: "{{ keycloak_rhn_products.results | map(attribute='file_name') | \
|
||||||
select('match', '^[^/]*/rh-sso-.*[0-9]*[.][0-9]*[.][0-9]*.*$') | \
|
select('match', '^[^/]*/rh-sso-.*[0-9]*[.][0-9]*[.][0-9]*.*$') | \
|
||||||
map('regex_replace', '[^/]*/rh-sso-([0-9]*[.][0-9]*[.][0-9]*(-[0-9])?)-.*', '\\1') | list | unique }}"
|
map('regex_replace', '[^/]*/rh-sso-([0-9]*[.][0-9]*[.][0-9]*(-[0-9])?)-.*', '\\1') | list | unique }}"
|
||||||
when: sso_patch_version is not defined or sso_patch_version | length == 0
|
when: (sso_patch_version | default('', true)) | length == 0
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: Determine latest version
|
- name: Determine latest version
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
sso_latest_version: "{{ filtered_versions | middleware_automation.common.version_sort | last }}"
|
keycloak_sso_latest_version: "{{ keycloak_filtered_versions | middleware_automation.common.version_sort | last }}"
|
||||||
when: sso_patch_version is not defined or sso_patch_version | length == 0
|
when: (sso_patch_version | default('', true)) | length == 0
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: Determine install zipfile from search results
|
- name: Determine install zipfile from search results
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
rhn_filtered_products: "{{ rhn_products.results | selectattr('file_name', 'match', '[^/]*/rh-sso-' + sso_latest_version + '-patch.zip$') }}"
|
keycloak_rhn_filtered_products: "{{ keycloak_rhn_products.results | selectattr('file_name', 'match', '[^/]*/rh-sso-' + keycloak_sso_latest_version + '-patch.zip$') }}"
|
||||||
patch_bundle: "rh-sso-{{ sso_latest_version }}-patch.zip"
|
keycloak_patch_bundle: "rh-sso-{{ keycloak_sso_latest_version }}-patch.zip"
|
||||||
patch_version: "{{ sso_latest_version }}"
|
keycloak_patch_version: "{{ keycloak_sso_latest_version }}"
|
||||||
when: sso_patch_version is not defined or sso_patch_version | length == 0
|
when: (sso_patch_version | default('', true)) | length == 0
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: "Determine selected patch from supplied version: {{ sso_patch_version }}"
|
- name: "Determine selected patch from supplied version: {{ sso_patch_version }}"
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
rhn_filtered_products: "{{ rhn_products.results | selectattr('file_name', 'match', '[^/]*/' + sso_patch_bundle + '$') }}"
|
keycloak_rhn_filtered_products: "{{ keycloak_rhn_products.results | selectattr('file_name', 'match', '[^/]*/' + sso_patch_bundle + '$') }}"
|
||||||
patch_bundle: "{{ sso_patch_bundle }}"
|
keycloak_patch_bundle: "{{ sso_patch_bundle }}"
|
||||||
patch_version: "{{ sso_patch_version }}"
|
keycloak_patch_version: "{{ sso_patch_version }}"
|
||||||
when: sso_patch_version is defined
|
when: sso_patch_version is defined
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
@@ -72,35 +73,36 @@
|
|||||||
middleware_automation.common.product_download: # noqa risky-file-permissions delegated, uses controller host user
|
middleware_automation.common.product_download: # noqa risky-file-permissions delegated, uses controller host user
|
||||||
client_id: "{{ rhn_username }}"
|
client_id: "{{ rhn_username }}"
|
||||||
client_secret: "{{ rhn_password }}"
|
client_secret: "{{ rhn_password }}"
|
||||||
product_id: "{{ (rhn_filtered_products | sort | last).id }}"
|
product_id: "{{ (keycloak_rhn_filtered_products | sort | last).id }}"
|
||||||
dest: "{{ local_path.stat.path }}/{{ patch_bundle }}"
|
dest: "{{ keycloak_local_path.stat.path }}/{{ keycloak_patch_bundle }}"
|
||||||
|
validate_certs: false
|
||||||
no_log: "{{ omit_rhn_output | default(true) }}"
|
no_log: "{{ omit_rhn_output | default(true) }}"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: Set download patch archive path
|
- name: Set download patch archive path
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
patch_archive: "{{ keycloak_dest }}/{{ patch_bundle }}"
|
keycloak_patch_archive: "{{ keycloak_dest }}/{{ keycloak_patch_bundle }}"
|
||||||
|
|
||||||
- name: Check download patch archive path
|
- name: Check download patch archive path
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ patch_archive }}"
|
path: "{{ keycloak_patch_archive }}"
|
||||||
register: patch_archive_path
|
register: keycloak_patch_archive_path
|
||||||
become: "{{ keycloak_rhsso_patch_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_rhsso_patch_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
## copy and unpack
|
## copy and unpack
|
||||||
- name: Copy patch archive to target nodes
|
- name: Copy patch archive to target nodes
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "{{ local_path.stat.path }}/{{ patch_bundle }}"
|
src: "{{ keycloak_local_path.stat.path }}/{{ keycloak_patch_bundle }}"
|
||||||
dest: "{{ patch_archive }}"
|
dest: "{{ keycloak_patch_archive }}"
|
||||||
owner: "{{ keycloak_service_user }}"
|
owner: "{{ keycloak_service_user }}"
|
||||||
group: "{{ keycloak_service_group }}"
|
group: "{{ keycloak_service_group }}"
|
||||||
mode: '0640'
|
mode: '0640'
|
||||||
register: new_version_downloaded
|
register: keycloak_new_version_downloaded
|
||||||
when:
|
when:
|
||||||
- not patch_archive_path.stat.exists
|
- not keycloak_patch_archive_path.stat.exists
|
||||||
- local_archive_path.stat is defined
|
- keycloak_local_archive_path.stat is defined
|
||||||
- local_archive_path.stat.exists
|
- keycloak_local_archive_path.stat.exists
|
||||||
become: "{{ keycloak_rhsso_patch_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_rhsso_patch_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
- name: "Check installed patches"
|
- name: "Check installed patches"
|
||||||
@@ -114,14 +116,14 @@
|
|||||||
|
|
||||||
- name: "Perform patching"
|
- name: "Perform patching"
|
||||||
when:
|
when:
|
||||||
- cli_result is defined
|
- keycloak_cli_result is defined
|
||||||
- cli_result.stdout is defined
|
- keycloak_cli_result.stdout is defined
|
||||||
- patch_version | regex_replace('-[0-9]$', '') not in cli_result.stdout
|
- keycloak_patch_version | regex_replace('-[0-9]$', '') not in keycloak_cli_result.stdout
|
||||||
block:
|
block:
|
||||||
- name: "Apply patch {{ patch_version }} to server"
|
- name: "Apply patch to server: {{ keycloak_patch_version }}"
|
||||||
ansible.builtin.include_tasks: rhsso_cli.yml
|
ansible.builtin.include_tasks: rhsso_cli.yml
|
||||||
vars:
|
vars:
|
||||||
cli_query: "patch apply {{ patch_archive }}"
|
cli_query: "patch apply {{ keycloak_patch_archive }}"
|
||||||
args:
|
args:
|
||||||
apply:
|
apply:
|
||||||
become: "{{ keycloak_rhsso_patch_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_rhsso_patch_require_privilege_escalation | default(true) }}"
|
||||||
@@ -132,15 +134,15 @@
|
|||||||
vars:
|
vars:
|
||||||
cli_query: "shutdown --restart"
|
cli_query: "shutdown --restart"
|
||||||
when:
|
when:
|
||||||
- cli_result.rc == 0
|
- keycloak_cli_result.rc == 0
|
||||||
args:
|
args:
|
||||||
apply:
|
apply:
|
||||||
become: "{{ keycloak_rhsso_patch_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_rhsso_patch_require_privilege_escalation | default(true) }}"
|
||||||
become_user: "{{ keycloak_service_user }}"
|
become_user: "{{ keycloak_service_user }}"
|
||||||
|
|
||||||
- name: "Wait until {{ keycloak.service_name }} becomes active {{ keycloak.health_url }}"
|
- name: "Wait until service becomes active: {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
url: "{{ keycloak.health_url }}"
|
url: "{{ keycloak_config.health_url }}"
|
||||||
register: keycloak_status
|
register: keycloak_status
|
||||||
until: keycloak_status.status == 200
|
until: keycloak_status.status == 200
|
||||||
retries: 25
|
retries: 25
|
||||||
@@ -158,14 +160,14 @@
|
|||||||
- name: "Verify installed patch version"
|
- name: "Verify installed patch version"
|
||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- patch_version not in cli_result.stdout
|
- keycloak_patch_version not in keycloak_cli_result.stdout
|
||||||
fail_msg: "Patch installation failed"
|
fail_msg: "Patch installation failed"
|
||||||
success_msg: "Patch installation successful"
|
success_msg: "Patch installation successful"
|
||||||
|
|
||||||
- name: "Skipping patch"
|
- name: "Skipping patch"
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg: "Cumulative patch {{ patch_version }} already installed, skipping patch installation."
|
msg: "Cumulative patch {{ keycloak_patch_version }} already installed, skipping patch installation."
|
||||||
when:
|
when:
|
||||||
- cli_result is defined
|
- keycloak_cli_result is defined
|
||||||
- cli_result.stdout is defined
|
- keycloak_cli_result.stdout is defined
|
||||||
- patch_version in cli_result.stdout
|
- keycloak_patch_version in keycloak_cli_result.stdout
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: "Start {{ keycloak.service_name }} service"
|
- name: "Start service: {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: keycloak
|
name: keycloak
|
||||||
enabled: true
|
enabled: true
|
||||||
@@ -7,9 +7,9 @@
|
|||||||
daemon_reload: true
|
daemon_reload: true
|
||||||
become: "{{ keycloak_start_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_start_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
- name: "Wait until {{ keycloak.service_name }} becomes active {{ keycloak.health_url }}"
|
- name: "Wait until service becomes active: {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
url: "{{ keycloak.health_url }}"
|
url: "{{ keycloak_config.health_url }}"
|
||||||
register: keycloak_status
|
register: keycloak_status
|
||||||
until: keycloak_status.status == 200
|
until: keycloak_status.status == 200
|
||||||
retries: "{{ keycloak_service_start_retries }}"
|
retries: "{{ keycloak_service_start_retries }}"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: "Stop {{ keycloak.service_name }}"
|
- name: "Stop {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: keycloak
|
name: keycloak
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: "Configure {{ keycloak.service_name }} service script wrapper"
|
- name: "Configure service script wrapper: {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_systemd_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_systemd_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: keycloak-service.sh.j2
|
src: keycloak-service.sh.j2
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
notify:
|
notify:
|
||||||
- restart keycloak
|
- restart keycloak
|
||||||
|
|
||||||
- name: "Configure sysconfig file for {{ keycloak.service_name }} service"
|
- name: "Configure sysconfig file for service: {{ keycloak_config.service_name }}"
|
||||||
become: "{{ keycloak_systemd_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_systemd_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: keycloak-sysconfig.j2
|
src: keycloak-sysconfig.j2
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
notify:
|
notify:
|
||||||
- restart keycloak
|
- restart keycloak
|
||||||
|
|
||||||
- name: "Configure systemd unit file for {{ keycloak.service_name }} service"
|
- name: "Configure systemd unit file for service: {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: keycloak.service.j2
|
src: keycloak.service.j2
|
||||||
dest: /etc/systemd/system/keycloak.service
|
dest: /etc/systemd/system/keycloak.service
|
||||||
@@ -29,16 +29,16 @@
|
|||||||
group: root
|
group: root
|
||||||
mode: '0644'
|
mode: '0644'
|
||||||
become: "{{ keycloak_systemd_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_systemd_require_privilege_escalation | default(true) }}"
|
||||||
register: systemdunit
|
register: keycloak_systemdunit
|
||||||
notify:
|
notify:
|
||||||
- restart keycloak
|
- restart keycloak
|
||||||
|
|
||||||
- name: "Start and wait for {{ keycloak.service_name }} service (first node db)"
|
- name: "Start and wait for service (first node db): {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.include_tasks: start_keycloak.yml
|
ansible.builtin.include_tasks: start_keycloak.yml
|
||||||
run_once: true
|
run_once: true
|
||||||
when: keycloak_db_enabled
|
when: keycloak_db_enabled
|
||||||
|
|
||||||
- name: "Start and wait for {{ keycloak.service_name }} service (remaining nodes)"
|
- name: "Start and wait for service (remaining nodes): {{ keycloak_config.service_name }}"
|
||||||
ansible.builtin.include_tasks: start_keycloak.yml
|
ansible.builtin.include_tasks: start_keycloak.yml
|
||||||
|
|
||||||
- name: Check service status
|
- name: Check service status
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{% for feature in keycloak.features %}
|
{% for feature in keycloak_config.features %}
|
||||||
feature.{{ feature.name }}={{ feature.status | default('enabled') }}
|
feature.{{ feature.name }}={{ feature.status | default('enabled') }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
@@ -17,7 +17,7 @@ checkEnvVar() {
|
|||||||
# for testing outside systemd
|
# for testing outside systemd
|
||||||
. /etc/sysconfig/keycloak
|
. /etc/sysconfig/keycloak
|
||||||
|
|
||||||
readonly KEYCLOAK_HOME={{ keycloak.home }}
|
readonly KEYCLOAK_HOME={{ keycloak_config.home }}
|
||||||
readonly KEYCLOAK_BIND_ADDRESS=${KEYCLOAK_BIND_ADDRESS}
|
readonly KEYCLOAK_BIND_ADDRESS=${KEYCLOAK_BIND_ADDRESS}
|
||||||
readonly KEYCLOAK_HTTP_PORT=${KEYCLOAK_HTTP_PORT}
|
readonly KEYCLOAK_HTTP_PORT=${KEYCLOAK_HTTP_PORT}
|
||||||
readonly KEYCLOAK_HTTPS_PORT=${KEYCLOAK_HTTPS_PORT}
|
readonly KEYCLOAK_HTTPS_PORT=${KEYCLOAK_HTTPS_PORT}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{{ ansible_managed | comment }}
|
{{ ansible_managed | comment }}
|
||||||
JAVA_OPTS='{{ keycloak_java_opts }}'
|
JAVA_OPTS='{{ keycloak_java_opts }}'
|
||||||
JAVA_HOME={{ keycloak_java_home | default(keycloak_pkg_java_home, true) }}
|
JAVA_HOME={{ keycloak_java_home | default(keycloak_pkg_java_home, true) }}
|
||||||
JBOSS_HOME={{ keycloak.home }}
|
JBOSS_HOME={{ keycloak_config.home }}
|
||||||
KEYCLOAK_BIND_ADDRESS={{ keycloak_bind_address }}
|
KEYCLOAK_BIND_ADDRESS={{ keycloak_bind_address }}
|
||||||
KEYCLOAK_HTTP_PORT={{ keycloak_http_port }}
|
KEYCLOAK_HTTP_PORT={{ keycloak_http_port }}
|
||||||
KEYCLOAK_HTTPS_PORT={{ keycloak_https_port }}
|
KEYCLOAK_HTTPS_PORT={{ keycloak_https_port }}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{{ ansible_managed | comment }}
|
{{ ansible_managed | comment }}
|
||||||
[Unit]
|
[Unit]
|
||||||
Description={{ keycloak.service_name }} Server
|
Description={{ keycloak_config.service_name }} Server
|
||||||
After=network.target
|
After=network.target
|
||||||
StartLimitIntervalSec={{ keycloak_service_startlimitintervalsec }}
|
StartLimitIntervalSec={{ keycloak_service_startlimitintervalsec }}
|
||||||
StartLimitBurst={{ keycloak_service_startlimitburst }}
|
StartLimitBurst={{ keycloak_service_startlimitburst }}
|
||||||
@@ -13,8 +13,8 @@ Group={{ keycloak_service_group }}
|
|||||||
{% endif -%}
|
{% endif -%}
|
||||||
EnvironmentFile=-{{ keycloak_sysconf_file }}
|
EnvironmentFile=-{{ keycloak_sysconf_file }}
|
||||||
PIDFile={{ keycloak_service_pidfile }}
|
PIDFile={{ keycloak_service_pidfile }}
|
||||||
ExecStart={{ keycloak.home }}/bin/standalone.sh $WILDFLY_OPTS
|
ExecStart={{ keycloak_config.home }}/bin/standalone.sh $WILDFLY_OPTS
|
||||||
WorkingDirectory={{ keycloak.home }}
|
WorkingDirectory={{ keycloak_config.home }}
|
||||||
TimeoutStartSec=30
|
TimeoutStartSec=30
|
||||||
TimeoutStopSec=30
|
TimeoutStopSec=30
|
||||||
LimitNOFILE=102642
|
LimitNOFILE=102642
|
||||||
|
|||||||
@@ -526,7 +526,7 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<property name="frontendUrl" value="{{ keycloak_modcluster.frontend_url }}"/>
|
<property name="frontendUrl" value="{{ keycloak_modcluster.frontend_url }}"/>
|
||||||
<property name="forceBackendUrlToFrontendUrl" value="{{ keycloak_modcluster.force_frontend_url }}"/>
|
<property name="forceBackendUrlToFrontendUrl" value="{{ keycloak_modcluster.force_frontend_url }}"/>
|
||||||
{% if keycloak_modcluster.admin_url | length > 0 %}
|
{% if (keycloak_modcluster.admin_url | default('', true)) | length > 0 %}
|
||||||
<property name="adminUrl" value="{{ keycloak_modcluster.admin_url }}" />
|
<property name="adminUrl" value="{{ keycloak_modcluster.admin_url }}" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</properties>
|
</properties>
|
||||||
@@ -541,7 +541,7 @@
|
|||||||
<subsystem xmlns="urn:wildfly:metrics:1.0" security-enabled="false" exposed-subsystems="*" prefix="${wildfly.metrics.prefix:jboss}"/>
|
<subsystem xmlns="urn:wildfly:metrics:1.0" security-enabled="false" exposed-subsystems="*" prefix="${wildfly.metrics.prefix:jboss}"/>
|
||||||
{% if keycloak_modcluster.enabled %}
|
{% if keycloak_modcluster.enabled %}
|
||||||
<subsystem xmlns="urn:jboss:domain:modcluster:5.0">
|
<subsystem xmlns="urn:jboss:domain:modcluster:5.0">
|
||||||
<proxy name="default" advertise="false" listener="ajp" proxies="{{ ['proxy_'] | product(keycloak_modcluster.reverse_proxy_urls | map(attribute='host')) | map('join') | list | join(' ') }}">
|
<proxy name="default" advertise="false" listener="ajp" proxies="{{ ['proxy_'] | product((keycloak_modcluster.reverse_proxy_urls | default([])) | map(attribute='host')) | map('join') | list | join(' ') }}">
|
||||||
<dynamic-load-provider>
|
<dynamic-load-provider>
|
||||||
<load-metric type="cpu"/>
|
<load-metric type="cpu"/>
|
||||||
</dynamic-load-provider>
|
</dynamic-load-provider>
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
# internal variables below
|
# internal variables below
|
||||||
|
|
||||||
|
keycloak_config:
|
||||||
|
|
||||||
keycloak:
|
|
||||||
home: "{{ keycloak_jboss_home }}"
|
home: "{{ keycloak_jboss_home }}"
|
||||||
config_dir: "{{ keycloak_config_dir }}"
|
config_dir: "{{ keycloak_config_dir }}"
|
||||||
bundle: "{{ keycloak_archive }}"
|
bundle: "{{ keycloak_archive }}"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
---
|
---
|
||||||
- name: "Invalidate {{ keycloak.service_name }} theme cache"
|
- name: "Invalidate theme cache: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.include_tasks: invalidate_theme_cache.yml
|
ansible.builtin.include_tasks: invalidate_theme_cache.yml
|
||||||
listen: "invalidate keycloak theme cache"
|
listen: "invalidate keycloak theme cache"
|
||||||
# handler should be invoked anytime a [build configuration](https://www.keycloak.org/server/all-config?f=build) changes
|
# handler should be invoked anytime a [build configuration](https://www.keycloak.org/server/all-config?f=build) changes
|
||||||
- name: "Rebuild {{ keycloak.service_name }} config"
|
- name: "Rebuild config: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.include_tasks: rebuild_config.yml
|
ansible.builtin.include_tasks: rebuild_config.yml
|
||||||
listen: "rebuild keycloak config"
|
listen: "rebuild keycloak config"
|
||||||
- name: "Bootstrapped"
|
- name: "Bootstrapped"
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
listen: "restart keycloak"
|
listen: "restart keycloak"
|
||||||
- name: "Display deprecation warning"
|
- name: "Display deprecation warning"
|
||||||
ansible.builtin.fail:
|
ansible.builtin.fail:
|
||||||
msg: "Deprecation warning: you are using the deprecated variable '{{ deprecated_variable | d('NotSet') }}', check docs on how to upgrade."
|
msg: "Deprecation warning: you are using the deprecated variable '{{ keycloak_quarkus_deprecated_variable | d('NotSet') }}', check docs on how to upgrade."
|
||||||
failed_when: false
|
failed_when: false
|
||||||
changed_when: true
|
changed_when: true
|
||||||
listen: "print deprecation warning"
|
listen: "print deprecation warning"
|
||||||
|
|||||||
@@ -564,5 +564,5 @@ argument_specs:
|
|||||||
type: "str"
|
type: "str"
|
||||||
rhbk_product_category:
|
rhbk_product_category:
|
||||||
default: "RHBK"
|
default: "RHBK"
|
||||||
description: "JBossNetwork API category for Red Hat Build of Keycloak"
|
description: "Unified Downloads API category for Red Hat Build of Keycloak"
|
||||||
type: "str"
|
type: "str"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: "Initialize configuration key store variables to be written"
|
- name: "Initialize configuration key store variables to be written"
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
store_items:
|
keycloak_quarkus_store_items:
|
||||||
- key: "kc.db-password"
|
- key: "kc.db-password"
|
||||||
value: "{{ keycloak_quarkus_db_pass }}"
|
value: "{{ keycloak_quarkus_db_pass }}"
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
changed_when: keycloak_quarkus_show_deprecation_warnings
|
changed_when: keycloak_quarkus_show_deprecation_warnings
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
keycloak_quarkus_https_key_store_file: "{{ keycloak_quarkus_key_store_file }}"
|
keycloak_quarkus_https_key_store_file: "{{ keycloak_quarkus_key_store_file }}"
|
||||||
deprecated_variable: "keycloak_quarkus_key_store_file" # read in deprecation handler
|
keycloak_quarkus_deprecated_variable: "keycloak_quarkus_key_store_file" # read in deprecation handler
|
||||||
notify:
|
notify:
|
||||||
- print deprecation warning
|
- print deprecation warning
|
||||||
|
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
changed_when: keycloak_quarkus_show_deprecation_warnings
|
changed_when: keycloak_quarkus_show_deprecation_warnings
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
keycloak_quarkus_https_key_store_password: "{{ keycloak_quarkus_key_store_password }}"
|
keycloak_quarkus_https_key_store_password: "{{ keycloak_quarkus_key_store_password }}"
|
||||||
deprecated_variable: "keycloak_quarkus_key_store_password" # read in deprecation handler
|
keycloak_quarkus_deprecated_variable: "keycloak_quarkus_key_store_password" # read in deprecation handler
|
||||||
notify:
|
notify:
|
||||||
- print deprecation warning
|
- print deprecation warning
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
run_once: true
|
run_once: true
|
||||||
changed_when: keycloak_quarkus_show_deprecation_warnings
|
changed_when: keycloak_quarkus_show_deprecation_warnings
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
deprecated_variable: "keycloak_quarkus_proxy_mode" # read in deprecation handler
|
keycloak_quarkus_deprecated_variable: "keycloak_quarkus_proxy_mode" # read in deprecation handler
|
||||||
notify:
|
notify:
|
||||||
- print deprecation warning
|
- print deprecation warning
|
||||||
|
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
changed_when: keycloak_quarkus_show_deprecation_warnings
|
changed_when: keycloak_quarkus_show_deprecation_warnings
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
keycloak_quarkus_hostname: "{{ keycloak_quarkus_frontend_url }}"
|
keycloak_quarkus_hostname: "{{ keycloak_quarkus_frontend_url }}"
|
||||||
deprecated_variable: "keycloak_quarkus_frontend_url" # read in deprecation handler
|
keycloak_quarkus_deprecated_variable: "keycloak_quarkus_frontend_url" # read in deprecation handler
|
||||||
notify:
|
notify:
|
||||||
- print deprecation warning
|
- print deprecation warning
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
{% set protocol = 'http://' %}
|
{% set protocol = 'http://' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ protocol }}{{ keycloak_quarkus_host }}:{{ keycloak_quarkus_port }}/{{ keycloak_quarkus_path }}
|
{{ protocol }}{{ keycloak_quarkus_host }}:{{ keycloak_quarkus_port }}/{{ keycloak_quarkus_path }}
|
||||||
deprecated_variable: "keycloak_quarkus_hostname_strict_https or keycloak_quarkus_frontend_url or keycloak_quarkus_frontend_url or keycloak_quarkus_hostname" # read in deprecation handler
|
keycloak_quarkus_deprecated_variable: "keycloak_quarkus_hostname_strict_https or keycloak_quarkus_frontend_url or keycloak_quarkus_frontend_url or keycloak_quarkus_hostname" # read in deprecation handler
|
||||||
notify:
|
notify:
|
||||||
- print deprecation warning
|
- print deprecation warning
|
||||||
|
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
changed_when: keycloak_quarkus_show_deprecation_warnings
|
changed_when: keycloak_quarkus_show_deprecation_warnings
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
keycloak_quarkus_hostname_admin: "{{ keycloak_quarkus_admin_url }}"
|
keycloak_quarkus_hostname_admin: "{{ keycloak_quarkus_admin_url }}"
|
||||||
deprecated_variable: "keycloak_quarkus_admin_url" # read in deprecation handler
|
keycloak_quarkus_deprecated_variable: "keycloak_quarkus_admin_url" # read in deprecation handler
|
||||||
notify:
|
notify:
|
||||||
- print deprecation warning
|
- print deprecation warning
|
||||||
|
|
||||||
@@ -111,7 +111,7 @@
|
|||||||
changed_when: keycloak_quarkus_show_deprecation_warnings
|
changed_when: keycloak_quarkus_show_deprecation_warnings
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
keycloak_quarkus_hostname_backchannel_dynamic: "{{ keycloak_quarkus_hostname_strict_backchannel == False }}"
|
keycloak_quarkus_hostname_backchannel_dynamic: "{{ keycloak_quarkus_hostname_strict_backchannel == False }}"
|
||||||
deprecated_variable: "keycloak_quarkus_hostname_backchannel_dynamic" # read in deprecation handler
|
keycloak_quarkus_deprecated_variable: "keycloak_quarkus_hostname_backchannel_dynamic" # read in deprecation handler
|
||||||
notify:
|
notify:
|
||||||
- print deprecation warning
|
- print deprecation warning
|
||||||
|
|
||||||
@@ -126,7 +126,7 @@
|
|||||||
changed_when: keycloak_quarkus_show_deprecation_warnings
|
changed_when: keycloak_quarkus_show_deprecation_warnings
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
keycloak_quarkus_bootstrap_admin_user: "{{ keycloak_quarkus_admin_user }}"
|
keycloak_quarkus_bootstrap_admin_user: "{{ keycloak_quarkus_admin_user }}"
|
||||||
deprecated_variable: "keycloak_quarkus_admin_user" # read in deprecation handler
|
keycloak_quarkus_deprecated_variable: "keycloak_quarkus_admin_user" # read in deprecation handler
|
||||||
notify:
|
notify:
|
||||||
- print deprecation warning
|
- print deprecation warning
|
||||||
|
|
||||||
@@ -141,7 +141,7 @@
|
|||||||
changed_when: keycloak_quarkus_show_deprecation_warnings
|
changed_when: keycloak_quarkus_show_deprecation_warnings
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
keycloak_quarkus_bootstrap_admin_user: "{{ keycloak_quarkus_admin_pass }}"
|
keycloak_quarkus_bootstrap_admin_user: "{{ keycloak_quarkus_admin_pass }}"
|
||||||
deprecated_variable: "keycloak_quarkus_admin_pass" # read in deprecation handler
|
keycloak_quarkus_deprecated_variable: "keycloak_quarkus_admin_pass" # read in deprecation handler
|
||||||
notify:
|
notify:
|
||||||
- print deprecation warning
|
- print deprecation warning
|
||||||
|
|
||||||
@@ -154,7 +154,7 @@
|
|||||||
changed_when: keycloak_quarkus_show_deprecation_warnings
|
changed_when: keycloak_quarkus_show_deprecation_warnings
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
keycloak_quarkus_http_host: "{{ keycloak_quarkus_bind_address }}"
|
keycloak_quarkus_http_host: "{{ keycloak_quarkus_bind_address }}"
|
||||||
deprecated_variable: "keycloak_quarkus_bind_address" # read in deprecation handler
|
keycloak_quarkus_deprecated_variable: "keycloak_quarkus_bind_address" # read in deprecation handler
|
||||||
notify:
|
notify:
|
||||||
- print deprecation warning
|
- print deprecation warning
|
||||||
|
|
||||||
|
|||||||
@@ -1,24 +1,24 @@
|
|||||||
---
|
---
|
||||||
- name: "Check if packages are already installed" # noqa command-instead-of-module this runs faster
|
- name: "Check if packages are already installed" # noqa command-instead-of-module this runs faster
|
||||||
ansible.builtin.command: "rpm -q {{ packages_list | join(' ') }}"
|
ansible.builtin.command: "rpm -q {{ packages_list | join(' ') }}"
|
||||||
register: rpm_info
|
register: keycloak_quarkus_rpm_info
|
||||||
changed_when: false
|
changed_when: false
|
||||||
failed_when: false
|
failed_when: false
|
||||||
when: ansible_facts.os_family == "RedHat"
|
when: ansible_facts.os_family == "RedHat"
|
||||||
|
|
||||||
- name: "Add missing packages to the yum install list"
|
- name: "Add missing packages to the yum install list"
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
packages_to_install: "{{ packages_to_install | default([]) + rpm_info.stdout_lines | \
|
keycloak_quarkus_packages_to_install: "{{ keycloak_quarkus_packages_to_install | default([]) + keycloak_quarkus_rpm_info.stdout_lines | \
|
||||||
map('regex_findall', 'package (.+) is not installed$') | default([]) | flatten }}"
|
map('regex_findall', 'package (.+) is not installed$') | default([]) | flatten }}"
|
||||||
when: ansible_facts.os_family == "RedHat"
|
when: ansible_facts.os_family == "RedHat"
|
||||||
|
|
||||||
- name: "Install packages: {{ packages_to_install }}"
|
- name: "Install packages: {{ keycloak_quarkus_packages_to_install }}"
|
||||||
become: "{{ keycloak_quarkus_fastpackages_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_fastpackages_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.dnf:
|
ansible.builtin.dnf:
|
||||||
name: "{{ packages_to_install }}"
|
name: "{{ keycloak_quarkus_packages_to_install }}"
|
||||||
state: present
|
state: present
|
||||||
when:
|
when:
|
||||||
- packages_to_install | default([]) | length > 0
|
- keycloak_quarkus_packages_to_install | default([]) | length > 0
|
||||||
- ansible_facts.os_family == "RedHat"
|
- ansible_facts.os_family == "RedHat"
|
||||||
|
|
||||||
- name: "Install packages: {{ packages_list }}"
|
- name: "Install packages: {{ packages_list }}"
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
enabled: true
|
enabled: true
|
||||||
state: started
|
state: started
|
||||||
|
|
||||||
- name: "Configure firewall for {{ keycloak.service_name }} http port"
|
- name: "Configure firewall for http port: {{ keycloak.service_name }}"
|
||||||
become: "{{ keycloak_quarkus_firewalld_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_firewalld_require_privilege_escalation | default(true) }}"
|
||||||
ansible.posix.firewalld:
|
ansible.posix.firewalld:
|
||||||
port: "{{ item }}"
|
port: "{{ item }}"
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
- "{{ keycloak_quarkus_http_port }}/tcp"
|
- "{{ keycloak_quarkus_http_port }}/tcp"
|
||||||
when: keycloak_quarkus_http_enabled | bool
|
when: keycloak_quarkus_http_enabled | bool
|
||||||
|
|
||||||
- name: "Configure firewall for {{ keycloak.service_name }} ports"
|
- name: "Configure firewall for ports: {{ keycloak.service_name }}"
|
||||||
become: "{{ keycloak_quarkus_firewalld_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_firewalld_require_privilege_escalation | default(true) }}"
|
||||||
ansible.posix.firewalld:
|
ansible.posix.firewalld:
|
||||||
port: "{{ item }}"
|
port: "{{ item }}"
|
||||||
|
|||||||
@@ -8,25 +8,25 @@
|
|||||||
- keycloak_quarkus_archive is defined
|
- keycloak_quarkus_archive is defined
|
||||||
- keycloak_quarkus_download_url is defined
|
- keycloak_quarkus_download_url is defined
|
||||||
- keycloak_quarkus_version is defined
|
- keycloak_quarkus_version is defined
|
||||||
- local_path is defined
|
- keycloak_quarkus_local_path is defined
|
||||||
quiet: true
|
quiet: true
|
||||||
|
|
||||||
- name: Check for an existing deployment
|
- name: Check for an existing deployment
|
||||||
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ keycloak.home }}"
|
path: "{{ keycloak.home }}"
|
||||||
register: existing_deploy
|
register: keycloak_quarkus_existing_deploy
|
||||||
|
|
||||||
- name: Stop and restart if existing deployment exists and install forced
|
- name: Stop and restart if existing deployment exists and install forced
|
||||||
when: existing_deploy.stat.exists and keycloak_quarkus_force_install | bool
|
when: keycloak_quarkus_existing_deploy.stat.exists and keycloak_quarkus_force_install | bool
|
||||||
block:
|
block:
|
||||||
- name: "Stop the old {{ keycloak.service_name }} service"
|
- name: "Stop the old service: {{ keycloak.service_name }}"
|
||||||
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
||||||
failed_when: false
|
failed_when: false
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: keycloak
|
name: keycloak
|
||||||
state: stopped
|
state: stopped
|
||||||
- name: "Remove the old {{ keycloak.service_name }} deployment"
|
- name: "Remove the old deployment: {{ keycloak.service_name }}"
|
||||||
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ keycloak_quarkus_home }}"
|
path: "{{ keycloak_quarkus_home }}"
|
||||||
@@ -36,9 +36,9 @@
|
|||||||
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ keycloak_quarkus_home }}"
|
path: "{{ keycloak_quarkus_home }}"
|
||||||
register: existing_deploy
|
register: keycloak_quarkus_existing_deploy
|
||||||
|
|
||||||
- name: "Create {{ keycloak.service_name }} service user/group"
|
- name: "Create service user/group: {{ keycloak.service_name }}"
|
||||||
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.user:
|
ansible.builtin.user:
|
||||||
name: "{{ keycloak.service_user }}"
|
name: "{{ keycloak.service_user }}"
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
system: true
|
system: true
|
||||||
create_home: false
|
create_home: false
|
||||||
|
|
||||||
- name: "Create {{ keycloak.service_name }} install location"
|
- name: "Create install location: {{ keycloak.service_name }}"
|
||||||
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
dest: "{{ keycloak_quarkus_dest }}"
|
dest: "{{ keycloak_quarkus_dest }}"
|
||||||
@@ -65,29 +65,30 @@
|
|||||||
## check remote archive
|
## check remote archive
|
||||||
- name: Set download archive path
|
- name: Set download archive path
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
archive: "{{ keycloak_quarkus_dest }}/{{ keycloak.bundle }}"
|
keycloak_quarkus_archive_full_path: "{{ keycloak_quarkus_dest }}/{{ keycloak.bundle }}"
|
||||||
|
|
||||||
- name: Check download archive path
|
- name: Check download archive path
|
||||||
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ archive }}"
|
path: "{{ keycloak_quarkus_archive_full_path }}"
|
||||||
register: archive_path
|
register: keycloak_quarkus_archive_path
|
||||||
|
|
||||||
## download to controller
|
## download to controller
|
||||||
- name: Download keycloak archive
|
- name: Download keycloak archive
|
||||||
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
|
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
|
||||||
url: "{{ keycloak_quarkus_download_url }}"
|
url: "{{ keycloak_quarkus_download_url }}"
|
||||||
dest: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
dest: "{{ keycloak_quarkus_local_path.stat.path }}/{{ keycloak.bundle }}"
|
||||||
mode: '0640'
|
mode: '0640'
|
||||||
url_username: "{{ keycloak_quarkus_binary_download_user | default(omit) }}"
|
url_username: "{{ keycloak_quarkus_binary_download_user | default(omit) }}"
|
||||||
url_password: "{{ keycloak_quarkus_binary_download_pass | default(omit) }}"
|
url_password: "{{ keycloak_quarkus_binary_download_pass | default(omit) }}"
|
||||||
|
validate_certs: false
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
become: false
|
become: false
|
||||||
run_once: true
|
run_once: true
|
||||||
when:
|
when:
|
||||||
- archive_path is defined
|
- keycloak_quarkus_archive_path is defined
|
||||||
- archive_path.stat is defined
|
- keycloak_quarkus_archive_path.stat is defined
|
||||||
- not archive_path.stat.exists
|
- not keycloak_quarkus_archive_path.stat.exists
|
||||||
- not keycloak.offline_install
|
- not keycloak.offline_install
|
||||||
- not rhbk_enable is defined or not rhbk_enable
|
- not rhbk_enable is defined or not rhbk_enable
|
||||||
|
|
||||||
@@ -95,9 +96,9 @@
|
|||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
when:
|
when:
|
||||||
- archive_path is defined
|
- keycloak_quarkus_archive_path is defined
|
||||||
- archive_path.stat is defined
|
- keycloak_quarkus_archive_path.stat is defined
|
||||||
- not archive_path.stat.exists
|
- not keycloak_quarkus_archive_path.stat.exists
|
||||||
- rhbk_enable is defined and rhbk_enable
|
- rhbk_enable is defined and rhbk_enable
|
||||||
- not keycloak.offline_install
|
- not keycloak.offline_install
|
||||||
- keycloak_quarkus_alternate_download_url is undefined
|
- keycloak_quarkus_alternate_download_url is undefined
|
||||||
@@ -109,14 +110,15 @@
|
|||||||
product_type: DISTRIBUTION
|
product_type: DISTRIBUTION
|
||||||
product_version: "{{ rhbk_version }}"
|
product_version: "{{ rhbk_version }}"
|
||||||
product_category: "{{ rhbk_product_category }}"
|
product_category: "{{ rhbk_product_category }}"
|
||||||
register: rhn_products
|
validate_certs: false
|
||||||
|
register: keycloak_quarkus_rhn_products
|
||||||
no_log: "{{ omit_rhn_output | default(true) }}"
|
no_log: "{{ omit_rhn_output | default(true) }}"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: Determine install zipfile from search results
|
- name: Determine install zipfile from search results
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
rhn_filtered_products: "{{ rhn_products.results | selectattr('file_name', 'match', '[^/]*/' + rhbk_archive + '$') }}"
|
keycloak_quarkus_rhn_filtered_products: "{{ keycloak_quarkus_rhn_products.results | selectattr('file_name', 'match', '[^/]*/' + rhbk_archive + '$') }}"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
@@ -124,9 +126,10 @@
|
|||||||
middleware_automation.common.product_download: # noqa risky-file-permissions delegated, uses controller host user
|
middleware_automation.common.product_download: # noqa risky-file-permissions delegated, uses controller host user
|
||||||
client_id: "{{ rhn_username }}"
|
client_id: "{{ rhn_username }}"
|
||||||
client_secret: "{{ rhn_password }}"
|
client_secret: "{{ rhn_password }}"
|
||||||
product_id: "{{ (rhn_filtered_products | first).id }}"
|
product_id: "{{ (keycloak_quarkus_rhn_filtered_products | first).id }}"
|
||||||
dest: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
dest: "{{ keycloak_quarkus_local_path.stat.path }}/{{ keycloak.bundle }}"
|
||||||
mode: '0640'
|
mode: '0640'
|
||||||
|
validate_certs: false
|
||||||
no_log: "{{ omit_rhn_output | default(true) }}"
|
no_log: "{{ omit_rhn_output | default(true) }}"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
@@ -137,15 +140,15 @@
|
|||||||
run_once: true
|
run_once: true
|
||||||
become: false
|
become: false
|
||||||
when:
|
when:
|
||||||
- archive_path is defined
|
- keycloak_quarkus_archive_path is defined
|
||||||
- archive_path.stat is defined
|
- keycloak_quarkus_archive_path.stat is defined
|
||||||
- not archive_path.stat.exists
|
- not keycloak_quarkus_archive_path.stat.exists
|
||||||
- rhbk_enable is defined and rhbk_enable
|
- rhbk_enable is defined and rhbk_enable
|
||||||
- not keycloak.offline_install
|
- not keycloak.offline_install
|
||||||
- keycloak_quarkus_alternate_download_url is defined
|
- keycloak_quarkus_alternate_download_url is defined
|
||||||
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
|
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
|
||||||
url: "{{ keycloak_quarkus_alternate_download_url }}"
|
url: "{{ keycloak_quarkus_alternate_download_url }}"
|
||||||
dest: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
dest: "{{ keycloak_quarkus_local_path.stat.path }}/{{ keycloak.bundle }}"
|
||||||
mode: '0640'
|
mode: '0640'
|
||||||
url_username: "{{ keycloak_quarkus_download_user | default(omit) }}"
|
url_username: "{{ keycloak_quarkus_download_user | default(omit) }}"
|
||||||
url_password: "{{ keycloak_quarkus_download_pass | default(omit) }}"
|
url_password: "{{ keycloak_quarkus_download_pass | default(omit) }}"
|
||||||
@@ -153,8 +156,8 @@
|
|||||||
|
|
||||||
- name: Check downloaded archive
|
- name: Check downloaded archive
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
path: "{{ keycloak_quarkus_local_path.stat.path }}/{{ keycloak.bundle }}"
|
||||||
register: local_archive_path
|
register: keycloak_quarkus_local_archive_path
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
become: false
|
become: false
|
||||||
run_once: true
|
run_once: true
|
||||||
@@ -162,35 +165,35 @@
|
|||||||
## copy and unpack
|
## copy and unpack
|
||||||
- name: Copy archive to target nodes
|
- name: Copy archive to target nodes
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
src: "{{ keycloak_quarkus_local_path.stat.path }}/{{ keycloak.bundle }}"
|
||||||
dest: "{{ archive }}"
|
dest: "{{ keycloak_quarkus_archive_full_path }}"
|
||||||
owner: "{{ keycloak.service_user }}"
|
owner: "{{ keycloak.service_user }}"
|
||||||
group: "{{ keycloak.service_group }}"
|
group: "{{ keycloak.service_group }}"
|
||||||
mode: '0640'
|
mode: '0640'
|
||||||
register: new_version_downloaded
|
register: keycloak_quarkus_new_version_downloaded
|
||||||
when:
|
when:
|
||||||
- not archive_path.stat.exists
|
- not keycloak_quarkus_archive_path.stat.exists
|
||||||
- local_archive_path.stat is defined
|
- keycloak_quarkus_local_archive_path.stat is defined
|
||||||
- local_archive_path.stat.exists
|
- keycloak_quarkus_local_archive_path.stat.exists
|
||||||
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
- name: "Check target directory: {{ keycloak.home }}/bin/"
|
- name: "Check target directory /bin/: {{ keycloak.home }}"
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ keycloak.home }}/bin/"
|
path: "{{ keycloak.home }}/bin/"
|
||||||
register: path_to_workdir
|
register: keycloak_quarkus_path_to_workdir
|
||||||
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
- name: "Extract Keycloak archive on target" # noqa no-handler need to run this here
|
- name: "Extract Keycloak archive on target" # noqa no-handler need to run this here
|
||||||
ansible.builtin.unarchive:
|
ansible.builtin.unarchive:
|
||||||
remote_src: true
|
remote_src: true
|
||||||
src: "{{ archive }}"
|
src: "{{ keycloak_quarkus_archive_full_path }}"
|
||||||
dest: "{{ keycloak_quarkus_dest }}"
|
dest: "{{ keycloak_quarkus_dest }}"
|
||||||
creates: "{{ keycloak.home }}/bin/"
|
creates: "{{ keycloak.home }}/bin/"
|
||||||
owner: "{{ keycloak.service_user }}"
|
owner: "{{ keycloak.service_user }}"
|
||||||
group: "{{ keycloak.service_group }}"
|
group: "{{ keycloak.service_group }}"
|
||||||
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_install_require_privilege_escalation | default(true) }}"
|
||||||
when:
|
when:
|
||||||
- (not path_to_workdir.stat.exists) or new_version_downloaded.changed
|
- (not keycloak_quarkus_path_to_workdir.stat.exists) or keycloak_quarkus_new_version_downloaded.changed
|
||||||
notify:
|
notify:
|
||||||
- restart keycloak
|
- restart keycloak
|
||||||
|
|
||||||
@@ -198,7 +201,7 @@
|
|||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg: "{{ keycloak.home }} already exists and version unchanged, skipping decompression"
|
msg: "{{ keycloak.home }} already exists and version unchanged, skipping decompression"
|
||||||
when:
|
when:
|
||||||
- (not new_version_downloaded.changed) and path_to_workdir.stat.exists
|
- (not keycloak_quarkus_new_version_downloaded.changed) and keycloak_quarkus_path_to_workdir.stat.exists
|
||||||
|
|
||||||
- name: "Copy private key to target"
|
- name: "Copy private key to target"
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
@@ -226,7 +229,7 @@
|
|||||||
- keycloak_quarkus_cert_file_copy_enabled is defined and keycloak_quarkus_cert_file_copy_enabled
|
- keycloak_quarkus_cert_file_copy_enabled is defined and keycloak_quarkus_cert_file_copy_enabled
|
||||||
- keycloak_quarkus_cert_file_src | length > 0
|
- keycloak_quarkus_cert_file_src | length > 0
|
||||||
|
|
||||||
- name: "Install {{ keycloak_quarkus_db_engine }} JDBC driver"
|
- name: "Install JDBC driver: {{ keycloak_quarkus_db_engine }}"
|
||||||
ansible.builtin.include_tasks: jdbc_driver.yml
|
ansible.builtin.include_tasks: jdbc_driver.yml
|
||||||
when:
|
when:
|
||||||
- rhbk_enable is defined and rhbk_enable
|
- rhbk_enable is defined and rhbk_enable
|
||||||
@@ -254,7 +257,7 @@
|
|||||||
version: "{{ item.maven.version | default(omit) }}"
|
version: "{{ item.maven.version | default(omit) }}"
|
||||||
username: "{{ item.maven.username | default(omit) }}"
|
username: "{{ item.maven.username | default(omit) }}"
|
||||||
password: "{{ item.maven.password | default(omit) }}"
|
password: "{{ item.maven.password | default(omit) }}"
|
||||||
dest: "{{ local_path.stat.path }}/{{ item.id }}.jar"
|
dest: "{{ keycloak_quarkus_local_path.stat.path }}/{{ item.id }}.jar"
|
||||||
delegate_to: "localhost"
|
delegate_to: "localhost"
|
||||||
run_once: true
|
run_once: true
|
||||||
loop: "{{ keycloak_quarkus_providers }}"
|
loop: "{{ keycloak_quarkus_providers }}"
|
||||||
@@ -263,7 +266,7 @@
|
|||||||
|
|
||||||
- name: "Copy maven providers"
|
- name: "Copy maven providers"
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "{{ local_path.stat.path }}/{{ item.id }}.jar"
|
src: "{{ keycloak_quarkus_local_path.stat.path }}/{{ item.id }}.jar"
|
||||||
dest: "{{ keycloak.home }}/providers/{{ item.id }}.jar"
|
dest: "{{ keycloak.home }}/providers/{{ item.id }}.jar"
|
||||||
owner: "{{ keycloak.service_user }}"
|
owner: "{{ keycloak.service_user }}"
|
||||||
group: "{{ keycloak.service_group }}"
|
group: "{{ keycloak.service_group }}"
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# you can do so by deleting the data/tmp/kc-gzip-cache directory of the server distribution
|
# you can do so by deleting the data/tmp/kc-gzip-cache directory of the server distribution
|
||||||
# It can be useful for instance if you redeployed custom providers or custom themes without
|
# It can be useful for instance if you redeployed custom providers or custom themes without
|
||||||
# disabling themes caching in the previous server executions.
|
# disabling themes caching in the previous server executions.
|
||||||
- name: "Delete {{ keycloak.service_name }} theme cache directory"
|
- name: "Delete theme cache directory: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ keycloak.home }}/data/tmp/kc-gzip-cache"
|
path: "{{ keycloak.home }}/data/tmp/kc-gzip-cache"
|
||||||
state: absent
|
state: absent
|
||||||
|
|||||||
@@ -123,13 +123,13 @@
|
|||||||
- name: Check service status
|
- name: Check service status
|
||||||
ansible.builtin.systemd_service:
|
ansible.builtin.systemd_service:
|
||||||
name: "{{ keycloak.service_name }}"
|
name: "{{ keycloak.service_name }}"
|
||||||
register: keycloak_service_status
|
register: keycloak_quarkus_service_status
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
|
||||||
- name: "Notify to remove `keycloak_quarkus_bootstrap_admin_user[_password]` env vars"
|
- name: "Notify to remove `keycloak_quarkus_bootstrap_admin_user[_password]` env vars"
|
||||||
when:
|
when:
|
||||||
- not ansible_local.keycloak.general.bootstrapped | default(false) | bool # it was not bootstrapped prior to the current role's execution
|
- not ansible_local.keycloak.general.bootstrapped | default(false) | bool # it was not bootstrapped prior to the current role's execution
|
||||||
- keycloak_service_status.status.ActiveState == "active" # but it is now
|
- keycloak_quarkus_service_status.status.ActiveState == "active" # but it is now
|
||||||
ansible.builtin.assert: { that: true, quiet: true }
|
ansible.builtin.assert: { that: true, quiet: true }
|
||||||
changed_when: true
|
changed_when: true
|
||||||
notify:
|
notify:
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
- name: Check local download archive path
|
- name: Check local download archive path
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ keycloak_quarkus_download_path }}"
|
path: "{{ keycloak_quarkus_download_path }}"
|
||||||
register: local_path
|
register: keycloak_quarkus_local_path
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
become: false
|
become: false
|
||||||
@@ -65,9 +65,9 @@
|
|||||||
- name: Validate local download path
|
- name: Validate local download path
|
||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- local_path.stat.exists
|
- keycloak_quarkus_local_path.stat.exists
|
||||||
- local_path.stat.readable
|
- keycloak_quarkus_local_path.stat.readable
|
||||||
- keycloak_quarkus_offline_install or local_path.stat.writeable
|
- keycloak_quarkus_offline_install or keycloak_quarkus_local_path.stat.writeable
|
||||||
quiet: true
|
quiet: true
|
||||||
fail_msg: "Defined controller path for downloading resources is incorrect or unreadable: {{ keycloak_quarkus_download_path }}"
|
fail_msg: "Defined controller path for downloading resources is incorrect or unreadable: {{ keycloak_quarkus_download_path }}"
|
||||||
success_msg: "Will download resource to controller path: {{ keycloak_quarkus_download_path }}"
|
success_msg: "Will download resource to controller path: {{ keycloak_quarkus_download_path }}"
|
||||||
@@ -76,20 +76,20 @@
|
|||||||
|
|
||||||
- name: Check downloaded archive if offline
|
- name: Check downloaded archive if offline
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
path: "{{ keycloak_quarkus_local_path.stat.path }}/{{ keycloak.bundle }}"
|
||||||
when: keycloak_quarkus_offline_install
|
when: keycloak_quarkus_offline_install
|
||||||
register: local_archive_path_check
|
register: keycloak_quarkus_local_archive_path_check
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: Validate local downloaded archive if offline
|
- name: Validate local downloaded archive if offline
|
||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- local_archive_path_check.stat.exists
|
- keycloak_quarkus_local_archive_path_check.stat.exists
|
||||||
- local_archive_path_check.stat.readable
|
- keycloak_quarkus_local_archive_path_check.stat.readable
|
||||||
quiet: true
|
quiet: true
|
||||||
fail_msg: "Configured for offline install but install archive not found at: {{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
fail_msg: "Configured for offline install but install archive not found at: {{ keycloak_quarkus_local_path.stat.path }}/{{ keycloak.bundle }}"
|
||||||
success_msg: "Will install offline with expected archive: {{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
success_msg: "Will install offline with expected archive: {{ keycloak_quarkus_local_path.stat.path }}/{{ keycloak.bundle }}"
|
||||||
when: keycloak_quarkus_offline_install
|
when: keycloak_quarkus_offline_install
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
@@ -100,11 +100,11 @@
|
|||||||
- name: "Check run keytool"
|
- name: "Check run keytool"
|
||||||
changed_when: false
|
changed_when: false
|
||||||
ansible.builtin.command: keytool -help
|
ansible.builtin.command: keytool -help
|
||||||
register: keytool_check
|
register: keycloak_quarkus_keytool_check
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
|
||||||
- name: "Fail when no keytool found"
|
- name: "Fail when no keytool found"
|
||||||
when: keytool_check.rc != 0
|
when: keycloak_quarkus_keytool_check.rc != 0
|
||||||
ansible.builtin.fail:
|
ansible.builtin.fail:
|
||||||
msg: "keytool NOT found in the PATH, but is required for setting up the configuration key store"
|
msg: "keytool NOT found in the PATH, but is required for setting up the configuration key store"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
# cf. https://www.keycloak.org/server/configuration#_optimize_the_keycloak_startup
|
# cf. https://www.keycloak.org/server/configuration#_optimize_the_keycloak_startup
|
||||||
- name: "Rebuild {{ keycloak.service_name }} config"
|
- name: "Rebuild config: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.shell: | # noqa blocked_modules shell is necessary here
|
ansible.builtin.shell: | # noqa blocked_modules shell is necessary here
|
||||||
env -i bash -c "set -a ; source {{ keycloak_quarkus_sysconf_file }} ; {{ keycloak.home }}/bin/kc.sh build "
|
env -i bash -c "set -a ; source {{ keycloak_quarkus_sysconf_file }} ; {{ keycloak.home }}/bin/kc.sh build "
|
||||||
become: "{{ keycloak_quarkus_rebuild_config_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_rebuild_config_require_privilege_escalation | default(true) }}"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: "Restart and enable {{ keycloak.service_name }} service"
|
- name: "Restart and enable service: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: "{{ keycloak.service_name }}"
|
name: "{{ keycloak.service_name }}"
|
||||||
enabled: true
|
enabled: true
|
||||||
@@ -7,11 +7,11 @@
|
|||||||
daemon_reload: true
|
daemon_reload: true
|
||||||
become: "{{ keycloak_quarkus_restart_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_restart_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
- name: "Wait until {{ keycloak.service_name }} service becomes active {{ keycloak.health_url }}"
|
- name: "Wait until service becomes active: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
url: "{{ keycloak.health_url }}"
|
url: "{{ keycloak.health_url }}"
|
||||||
register: keycloak_status
|
register: keycloak_quarkus_status
|
||||||
until: keycloak_status.status == 200
|
until: keycloak_quarkus_status.status == 200
|
||||||
retries: "{{ keycloak_quarkus_restart_health_check_retries }}"
|
retries: "{{ keycloak_quarkus_restart_health_check_retries }}"
|
||||||
delay: "{{ keycloak_quarkus_restart_health_check_delay }}"
|
delay: "{{ keycloak_quarkus_restart_health_check_delay }}"
|
||||||
when: internal_force_health_check | default(keycloak_quarkus_restart_health_check)
|
when: internal_force_health_check | default(keycloak_quarkus_restart_health_check)
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
- name: "Restart services in serial, with optional healtch check (keycloak_quarkus_restart_health_check)"
|
- name: "Restart services in serial, with optional healtch check (keycloak_quarkus_restart_health_check)"
|
||||||
throttle: 1
|
throttle: 1
|
||||||
block:
|
block:
|
||||||
- name: "Restart and enable {{ keycloak.service_name }} service"
|
- name: "Restart and enable service: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.include_tasks:
|
ansible.builtin.include_tasks:
|
||||||
file: restart.yml
|
file: restart.yml
|
||||||
apply:
|
apply:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: Verify first restarted service with health URL, then rest restart in parallel
|
- name: Verify first restarted service with health URL, then rest restart in parallel
|
||||||
block:
|
block:
|
||||||
- name: "Restart and enable {{ keycloak.service_name }} service on initial host"
|
- name: "Restart and enable service on initial host: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.include_tasks:
|
ansible.builtin.include_tasks:
|
||||||
file: restart.yml
|
file: restart.yml
|
||||||
apply:
|
apply:
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
vars:
|
vars:
|
||||||
internal_force_health_check: true
|
internal_force_health_check: true
|
||||||
|
|
||||||
- name: "Restart and enable {{ keycloak.service_name }} service on other hosts"
|
- name: "Restart and enable service on other hosts: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: "{{ keycloak.service_name }}"
|
name: "{{ keycloak.service_name }}"
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: "Start {{ keycloak.service_name }} service"
|
- name: "Start service: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: keycloak
|
name: keycloak
|
||||||
enabled: true
|
enabled: true
|
||||||
@@ -7,11 +7,11 @@
|
|||||||
daemon_reload: true
|
daemon_reload: true
|
||||||
become: "{{ keycloak_quarkus_start_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_start_require_privilege_escalation | default(true) }}"
|
||||||
|
|
||||||
- name: "Wait until {{ keycloak.service_name }} becomes active {{ keycloak.health_url }}"
|
- name: "Wait until service becomes active: {{ keycloak.service_name }}"
|
||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
url: "{{ keycloak.health_url }}"
|
url: "{{ keycloak.health_url }}"
|
||||||
register: keycloak_status
|
register: keycloak_quarkus_status
|
||||||
until: keycloak_status.status == 200
|
until: keycloak_quarkus_status.status == 200
|
||||||
retries: 25
|
retries: 25
|
||||||
delay: 10
|
delay: 10
|
||||||
when: internal_force_health_check | default(keycloak_quarkus_restart_health_check)
|
when: internal_force_health_check | default(keycloak_quarkus_restart_health_check)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: "Configure sysconfig file for {{ keycloak.service_name }} service"
|
- name: "Configure sysconfig file for service: {{ keycloak.service_name }}"
|
||||||
become: "{{ keycloak_quarkus_systemd_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_systemd_require_privilege_escalation | default(true) }}"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: keycloak-sysconfig.j2
|
src: keycloak-sysconfig.j2
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
group: root
|
group: root
|
||||||
mode: '0644'
|
mode: '0644'
|
||||||
become: "{{ keycloak_quarkus_systemd_require_privilege_escalation | default(true) }}"
|
become: "{{ keycloak_quarkus_systemd_require_privilege_escalation | default(true) }}"
|
||||||
register: systemdunit
|
register: keycloak_quarkus_systemdunit
|
||||||
notify:
|
notify:
|
||||||
- rebuild keycloak config
|
- rebuild keycloak config
|
||||||
- restart keycloak
|
- restart keycloak
|
||||||
|
|||||||
@@ -10,18 +10,18 @@ Role Defaults
|
|||||||
|
|
||||||
| Variable | Description | Default |
|
| Variable | Description | Default |
|
||||||
|:---------|:------------|:--------|
|
|:---------|:------------|:--------|
|
||||||
|`keycloak_admin_user`| Administration console user account | `admin` |
|
|`keycloak_realm_admin_user`| Administration console user account | `admin` |
|
||||||
|`keycloak_host`| hostname | `localhost` |
|
|`keycloak_realm_host`| hostname | `localhost` |
|
||||||
|`keycloak_context`| Context path for rest calls (set to `/auth` for legacy WildFly-based Keycloak) | `` |
|
|`keycloak_realm_context`| Context path for rest calls (set to `/auth` for legacy WildFly-based Keycloak) | `` |
|
||||||
|`keycloak_http_port`| HTTP port | `8080` |
|
|`keycloak_realm_http_port`| HTTP port | `8080` |
|
||||||
|`keycloak_https_port`| TLS HTTP port | `8443` |
|
|`keycloak_realm_https_port`| TLS HTTP port | `8443` |
|
||||||
|`keycloak_auth_realm`| Name of the main authentication realm | `master` |
|
|`keycloak_realm_auth_realm`| Name of the main authentication realm | `master` |
|
||||||
|`keycloak_management_http_port`| Management port | `9990` |
|
|`keycloak_realm_management_http_port`| Management port | `9990` |
|
||||||
|`keycloak_auth_client`| Authentication client for configuration REST calls | `admin-cli` |
|
|`keycloak_realm_auth_client`| Authentication client for configuration REST calls | `admin-cli` |
|
||||||
|`keycloak_client_public`| Configure a public realm client | `True` |
|
|`keycloak_realm_client_public`| Configure a public realm client | `True` |
|
||||||
|`keycloak_client_web_origins`| Web origins for realm client | `/*` |
|
|`keycloak_realm_client_web_origins`| Web origins for realm client | `/*` |
|
||||||
|`keycloak_url`| URL for configuration rest calls | `http://{{ keycloak_host }}:{{ keycloak_http_port }}` |
|
|`keycloak_realm_url`| URL for configuration rest calls | `http://{{ keycloak_realm_host }}:{{ keycloak_realm_http_port }}` |
|
||||||
|`keycloak_management_url`| URL for management console rest calls | `http://{{ keycloak_host }}:{{ keycloak_management_http_port }}` |
|
|`keycloak_realm_management_url`| URL for management console rest calls | `http://{{ keycloak_realm_host }}:{{ keycloak_realm_management_http_port }}` |
|
||||||
|
|
||||||
|
|
||||||
Role Variables
|
Role Variables
|
||||||
@@ -31,30 +31,30 @@ The following are a set of _required_ variables for the role:
|
|||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|:---------|:------------|
|
|:---------|:------------|
|
||||||
|`keycloak_realm` | Name of the realm to be created |
|
|`keycloak_realm_realm` | Name of the realm to be created |
|
||||||
|`keycloak_admin_password`| Password for the administration console user account |
|
|`keycloak_realm_admin_password`| Password for the administration console user account |
|
||||||
|
|
||||||
|
|
||||||
The following variables are available for creating clients:
|
The following variables are available for creating clients:
|
||||||
|
|
||||||
| Variable | Description | Default |
|
| Variable | Description | Default |
|
||||||
|:---------|:------------|:---------|
|
|:---------|:------------|:---------|
|
||||||
|`keycloak_clients` | List of _client_ declarations for the realm | `[]` |
|
|`keycloak_realm_clients` | List of _client_ declarations for the realm | `[]` |
|
||||||
|`keycloak_client_default_roles` | List of default role name for clients | `[]` |
|
|`keycloak_realm_client_default_roles` | List of default role name for clients | `[]` |
|
||||||
|`keycloak_client_users` | List of user/role mappings for a client | `[]` |
|
|`keycloak_realm_client_users` | List of user/role mappings for a client | `[]` |
|
||||||
|
|
||||||
|
|
||||||
The following variables are available for creating user federation:
|
The following variables are available for creating user federation:
|
||||||
|
|
||||||
| Variable | Description | Default |
|
| Variable | Description | Default |
|
||||||
|:---------|:------------|:---------|
|
|:---------|:------------|:---------|
|
||||||
|`keycloak_user_federation` | List of _keycloak_user_federation_ for the realm | `[]` |
|
|`keycloak_realm_user_federation` | List of _keycloak_user_federation_ for the realm | `[]` |
|
||||||
|
|
||||||
|
|
||||||
Variable formats
|
Variable formats
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
* `keycloak_user_federation`, a list of:
|
* `keycloak_realm_user_federation`, a list of:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- realm: <name of the realm in which user federation should be configured, required>
|
- realm: <name of the realm in which user federation should be configured, required>
|
||||||
@@ -68,24 +68,24 @@ Variable formats
|
|||||||
Refer to [docs](https://docs.ansible.com/ansible/latest/collections/community/general/keycloak_user_federation_module.html) for information on supported variables.
|
Refer to [docs](https://docs.ansible.com/ansible/latest/collections/community/general/keycloak_user_federation_module.html) for information on supported variables.
|
||||||
|
|
||||||
|
|
||||||
* `keycloak_clients`, a list of:
|
* `keycloak_realm_clients`, a list of:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- name: <name of the client>
|
- name: <name of the client>
|
||||||
id: <id of the client>
|
id: <id of the client>
|
||||||
client_id: <id of the client>
|
client_id: <id of the client>
|
||||||
secret: <secret of the client (Optional)>
|
secret: <secret of the client (Optional)>
|
||||||
roles: <keycloak_client_default_roles>
|
roles: <keycloak_realm_client_default_roles>
|
||||||
realm: <name of the realm that contains the client>
|
realm: <name of the realm that contains the client>
|
||||||
public_client: <true for public, false for confidential>
|
public_client: <true for public, false for confidential>
|
||||||
web_origins: <list of allowed we origins for the client>
|
web_origins: <list of allowed we origins for the client>
|
||||||
users: <keycloak_client_users>
|
users: <keycloak_realm_client_users>
|
||||||
```
|
```
|
||||||
|
|
||||||
`name` and either `id` or `client_id` are required.
|
`name` and either `id` or `client_id` are required.
|
||||||
|
|
||||||
|
|
||||||
* `keycloak_client_users`, a list of:
|
* `keycloak_realm_client_users`, a list of:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- username: <username, required>
|
- username: <username, required>
|
||||||
@@ -118,7 +118,7 @@ For features not covered by this role, the collection provides dedicated modules
|
|||||||
| `keycloak_authentication_flow` | Authentication flows and execution steps — see [example playbook](../../playbooks/keycloak_authentication_flow.yml) |
|
| `keycloak_authentication_flow` | Authentication flows and execution steps — see [example playbook](../../playbooks/keycloak_authentication_flow.yml) |
|
||||||
| `keycloak_client` | Clients (also used internally by this role) |
|
| `keycloak_client` | Clients (also used internally by this role) |
|
||||||
| `keycloak_role` | Realm and client roles |
|
| `keycloak_role` | Realm and client roles |
|
||||||
| `keycloak_user_federation` | User federations such as LDAP (also used internally by this role) |
|
| `keycloak_realm_user_federation` | User federations such as LDAP (also used internally by this role) |
|
||||||
|
|
||||||
|
|
||||||
Example Playbook
|
Example Playbook
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
---
|
---
|
||||||
### Keycloak configuration settings
|
### Keycloak configuration settings
|
||||||
keycloak_host: localhost
|
keycloak_realm_host: localhost
|
||||||
keycloak_http_port: 8080
|
keycloak_realm_http_port: 8080
|
||||||
keycloak_https_port: 8443
|
keycloak_realm_https_port: 8443
|
||||||
keycloak_management_http_port: 9990
|
keycloak_realm_management_http_port: 9990
|
||||||
|
|
||||||
### Keycloak administration console user
|
### Keycloak administration console user
|
||||||
keycloak_admin_user: admin
|
keycloak_realm_admin_user: admin
|
||||||
keycloak_auth_realm: master
|
keycloak_realm_auth_realm: master
|
||||||
keycloak_auth_client: admin-cli
|
keycloak_realm_auth_client: admin-cli
|
||||||
keycloak_context: ''
|
keycloak_realm_context: ''
|
||||||
|
|
||||||
# administrator console password, this is a required variable
|
# administrator console password, this is a required variable
|
||||||
keycloak_admin_password: ''
|
keycloak_realm_admin_password: ''
|
||||||
|
|
||||||
### Keycloak realms, clients, roles, federation
|
### Keycloak realms, clients, roles, federation
|
||||||
# list of clients to create in the realm
|
# list of clients to create in the realm
|
||||||
@@ -26,35 +26,36 @@ keycloak_admin_password: ''
|
|||||||
# and users is a list of account, see below for the format definition
|
# and users is a list of account, see below for the format definition
|
||||||
# an empty name will skip the creation of the client
|
# an empty name will skip the creation of the client
|
||||||
#
|
#
|
||||||
# keycloak_clients:
|
# keycloak_realm_clients:
|
||||||
# - name: ''
|
# - name: ''
|
||||||
# roles: "{{ keycloak_client_default_roles }}"
|
# roles: "{{ keycloak_realm_client_default_roles }}"
|
||||||
# realm: "{{ keycloak_realm }}"
|
# realm: "{{ keycloak_realm_realm }}"
|
||||||
# public_client: "{{ keycloak_client_public }}"
|
# public_client: "{{ keycloak_realm_client_public }}"
|
||||||
# web_origins: "{{ keycloak_client_web_origins }}"
|
# web_origins: "{{ keycloak_realm_client_web_origins }}"
|
||||||
# redirect_uris: "{{ keycloak_client_redirect_uris }}"
|
# redirect_uris: "{{ keycloak_realm_client_redirect_uris }}"
|
||||||
# users: "{{ keycloak_client_users }}"
|
# users: "{{ keycloak_realm_client_users }}"
|
||||||
keycloak_clients: []
|
keycloak_realm_clients: []
|
||||||
|
|
||||||
# list of roles to create in the client
|
# list of roles to create in the client
|
||||||
keycloak_client_default_roles: []
|
keycloak_realm_client_default_roles: []
|
||||||
|
|
||||||
# if True, create a public client; otherwise, a confidetial client
|
# if True, create a public client; otherwise, a confidetial client
|
||||||
keycloak_client_public: true
|
keycloak_realm_client_public: true
|
||||||
|
|
||||||
# allowed web origins for the client
|
# allowed web origins for the client
|
||||||
keycloak_client_web_origins: '/*'
|
keycloak_realm_client_web_origins: '/*'
|
||||||
|
|
||||||
# list of user and role mappings to create in the client
|
# list of user and role mappings to create in the client
|
||||||
# Each user has the form:
|
# Each user has the form:
|
||||||
# { username: '', password: '', email: '', firstName: '', lastName: '', client_roles: [] }
|
# { username: '', password: '', email: '', firstName: '', lastName: '', client_roles: [] }
|
||||||
# where each client_role has the form:
|
# where each client_role has the form:
|
||||||
# { client: '', role: '', realm: '' }
|
# { client: '', role: '', realm: '' }
|
||||||
keycloak_client_users: []
|
keycloak_realm_client_users: []
|
||||||
|
|
||||||
### List of Keycloak User Federation
|
### List of Keycloak User Federation
|
||||||
keycloak_user_federation: []
|
keycloak_realm_user_federation: []
|
||||||
|
|
||||||
# other settings
|
# other settings
|
||||||
keycloak_url: "http://{{ keycloak_host }}:{{ keycloak_http_port + (keycloak_jboss_port_offset | default(0)) }}"
|
keycloak_realm_url: "http://{{ keycloak_realm_host }}:{{ keycloak_realm_http_port + (keycloak_realm_jboss_port_offset | default(0)) }}"
|
||||||
keycloak_management_url: "http://{{ keycloak_host }}:{{ keycloak_management_http_port + (keycloak_jboss_port_offset | default(0)) }}"
|
keycloak_realm_management_url: "http://{{ keycloak_realm_host }}:{{ keycloak_realm_management_http_port + (keycloak_realm_jboss_port_offset | default(0)) }}"
|
||||||
|
keycloak_realm_no_log: true
|
||||||
|
|||||||
@@ -1,94 +1,94 @@
|
|||||||
argument_specs:
|
argument_specs:
|
||||||
main:
|
main:
|
||||||
options:
|
options:
|
||||||
keycloak_host:
|
keycloak_realm_host:
|
||||||
# line 3 of keycloak_realm/defaults/main.yml
|
# line 3 of keycloak_realm/defaults/main.yml
|
||||||
default: "localhost"
|
default: "localhost"
|
||||||
description: "Hostname for rest calls"
|
description: "Hostname for rest calls"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_context:
|
keycloak_realm_context:
|
||||||
# line 5 of keycloak_realm/defaults/main.yml
|
# line 5 of keycloak_realm/defaults/main.yml
|
||||||
default: ""
|
default: ""
|
||||||
description: "Context path for rest calls (was /auth for legacy WildFly-based Keycloak, empty for Quarkus-based Keycloak/RHBK)"
|
description: "Context path for rest calls (was /auth for legacy WildFly-based Keycloak, empty for Quarkus-based Keycloak/RHBK)"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_http_port:
|
keycloak_realm_http_port:
|
||||||
# line 4 of keycloak_realm/defaults/main.yml
|
# line 4 of keycloak_realm/defaults/main.yml
|
||||||
default: 8080
|
default: 8080
|
||||||
description: "HTTP port"
|
description: "HTTP port"
|
||||||
type: "int"
|
type: "int"
|
||||||
keycloak_https_port:
|
keycloak_realm_https_port:
|
||||||
# line 5 of keycloak_realm/defaults/main.yml
|
# line 5 of keycloak_realm/defaults/main.yml
|
||||||
default: 8443
|
default: 8443
|
||||||
description: "HTTPS port"
|
description: "HTTPS port"
|
||||||
type: "int"
|
type: "int"
|
||||||
keycloak_management_http_port:
|
keycloak_realm_management_http_port:
|
||||||
# line 6 of keycloak_realm/defaults/main.yml
|
# line 6 of keycloak_realm/defaults/main.yml
|
||||||
default: 9990
|
default: 9990
|
||||||
description: "Management port"
|
description: "Management port"
|
||||||
type: "int"
|
type: "int"
|
||||||
keycloak_admin_user:
|
keycloak_realm_admin_user:
|
||||||
# line 10 of keycloak_realm/defaults/main.yml
|
# line 10 of keycloak_realm/defaults/main.yml
|
||||||
default: "admin"
|
default: "admin"
|
||||||
description: "Administration console user account"
|
description: "Administration console user account"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_auth_realm:
|
keycloak_realm_auth_realm:
|
||||||
# line 11 of keycloak_realm/defaults/main.yml
|
# line 11 of keycloak_realm/defaults/main.yml
|
||||||
default: "master"
|
default: "master"
|
||||||
description: "Name of the main authentication realm"
|
description: "Name of the main authentication realm"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_auth_client:
|
keycloak_realm_auth_client:
|
||||||
# line 12 of keycloak_realm/defaults/main.yml
|
# line 12 of keycloak_realm/defaults/main.yml
|
||||||
default: "admin-cli"
|
default: "admin-cli"
|
||||||
description: "Authentication client for configuration REST calls"
|
description: "Authentication client for configuration REST calls"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_client_default_roles:
|
keycloak_realm_client_default_roles:
|
||||||
# line 36 of keycloak_realm/defaults/main.yml
|
# line 36 of keycloak_realm/defaults/main.yml
|
||||||
default: "[]"
|
default: "[]"
|
||||||
description: "List of roles to configure as client default"
|
description: "List of roles to configure as client default"
|
||||||
type: "list"
|
type: "list"
|
||||||
keycloak_client_public:
|
keycloak_realm_client_public:
|
||||||
# line 39 of keycloak_realm/defaults/main.yml
|
# line 39 of keycloak_realm/defaults/main.yml
|
||||||
default: true
|
default: true
|
||||||
description: "Configure a public realm client"
|
description: "Configure a public realm client"
|
||||||
type: "bool"
|
type: "bool"
|
||||||
keycloak_client_web_origins:
|
keycloak_realm_client_web_origins:
|
||||||
# line 42 of keycloak_realm/defaults/main.yml
|
# line 42 of keycloak_realm/defaults/main.yml
|
||||||
default: "/*"
|
default: "/*"
|
||||||
description: "Web origins for realm client"
|
description: "Web origins for realm client"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_client_users:
|
keycloak_realm_client_users:
|
||||||
# line 49 of keycloak_realm/defaults/main.yml
|
# line 49 of keycloak_realm/defaults/main.yml
|
||||||
default: "[]"
|
default: "[]"
|
||||||
description: "List of users to configure in the realm client"
|
description: "List of users to configure in the realm client"
|
||||||
type: "list"
|
type: "list"
|
||||||
keycloak_user_federation:
|
keycloak_realm_user_federation:
|
||||||
# line 52 of keycloak_realm/defaults/main.yml
|
# line 52 of keycloak_realm/defaults/main.yml
|
||||||
default: "[]"
|
default: "[]"
|
||||||
description: "List of user federations to configure in the realm"
|
description: "List of user federations to configure in the realm"
|
||||||
type: "list"
|
type: "list"
|
||||||
keycloak_admin_password:
|
keycloak_realm_admin_password:
|
||||||
# line 5 of keycloak_realm/vars/main.yml
|
# line 5 of keycloak_realm/vars/main.yml
|
||||||
required: true
|
required: true
|
||||||
description: "Password for the administration console user account"
|
description: "Password for the administration console user account"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_realm:
|
keycloak_realm_realm:
|
||||||
# line 8 of keycloak_realm/vars/main.yml
|
# line 8 of keycloak_realm/vars/main.yml
|
||||||
required: true
|
required: true
|
||||||
description: "Name of the realm to be configured"
|
description: "Name of the realm to be configured"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_clients:
|
keycloak_realm_clients:
|
||||||
# line 11 of keycloak_realm/vars/main.yml
|
# line 11 of keycloak_realm/vars/main.yml
|
||||||
default: "[]"
|
default: "[]"
|
||||||
description: "List of client declarations for the realm"
|
description: "List of client declarations for the realm"
|
||||||
type: "list"
|
type: "list"
|
||||||
keycloak_url:
|
keycloak_realm_url:
|
||||||
# line 14 of keycloak_realm/vars/main.yml
|
# line 14 of keycloak_realm/vars/main.yml
|
||||||
default: "http://{{ keycloak_host }}:{{ keycloak_http_port + ( keycloak_jboss_port_offset | default(0) ) }}"
|
default: "http://{{ keycloak_realm_host }}:{{ keycloak_realm_http_port + ( keycloak_realm_jboss_port_offset | default(0) ) }}"
|
||||||
description: "URL for configuration rest calls"
|
description: "URL for configuration rest calls"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_management_url:
|
keycloak_realm_management_url:
|
||||||
# line 15 of keycloak_realm/vars/main.yml
|
# line 15 of keycloak_realm/vars/main.yml
|
||||||
default: "http://{{ keycloak_host }}:{{ keycloak_management_http_port + ( keycloak_jboss_port_offset | default(0) ) }}"
|
default: "http://{{ keycloak_realm_host }}:{{ keycloak_realm_management_http_port + ( keycloak_realm_jboss_port_offset | default(0) ) }}"
|
||||||
description: "URL for management console rest calls"
|
description: "URL for management console rest calls"
|
||||||
type: "str"
|
type: "str"
|
||||||
downstream:
|
downstream:
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user