mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-07-24 13:50:33 -07:00
Add option to override JDBC download parameters
This commit is contained in:
parent
a33393a477
commit
a7b9f0ef97
2 changed files with 20 additions and 2 deletions
|
@ -372,6 +372,15 @@ argument_specs:
|
||||||
description: "Activation delay for service systemd unit (seconds)"
|
description: "Activation delay for service systemd unit (seconds)"
|
||||||
default: 10
|
default: 10
|
||||||
type: 'int'
|
type: 'int'
|
||||||
|
keycloak_quarkus_jdbc_download_url:
|
||||||
|
description: "Override the default Maven Central download URL for the JDBC driver"
|
||||||
|
type: "str"
|
||||||
|
keycloak_quarkus_jdbc_download_user:
|
||||||
|
description: "Set a username with which to authenticate when downloading JDBC drivers from an alternative location"
|
||||||
|
type: "str"
|
||||||
|
keycloak_quarkus_jdbc_download_pass:
|
||||||
|
description: "Set a password with which to authenticate when downloading JDBC drivers from an alternative location (requires keycloak_quarkus_jdbc_download_user)"
|
||||||
|
type: "str"
|
||||||
downstream:
|
downstream:
|
||||||
options:
|
options:
|
||||||
rhbk_version:
|
rhbk_version:
|
||||||
|
|
|
@ -1,10 +1,19 @@
|
||||||
---
|
---
|
||||||
- name: "Retrieve JDBC Driver from {{ keycloak_jdbc[keycloak_quarkus_jdbc_engine].driver_jar_url }}"
|
- name: Verify valid parameters for download credentials when specified
|
||||||
|
fail:
|
||||||
|
msg: >-
|
||||||
|
When JDBC driver download credentials are set, both the username and the password MUST be set
|
||||||
|
when:
|
||||||
|
- keycloak_jdbc_download_user is undefined and keycloak_jdbc_download_pass is not undefined
|
||||||
|
- keycloak_jdbc_download_pass is undefined and keycloak_jdbc_download_user is not undefined
|
||||||
|
- name: "Retrieve JDBC Driver from {{ keycloak_jdbc_download_user | default(keycloak_quarkus_default_jdbc[keycloak_quarkus_jdbc_engine].driver_jar_url) }}"
|
||||||
ansible.builtin.get_url:
|
ansible.builtin.get_url:
|
||||||
url: "{{ keycloak_quarkus_default_jdbc[keycloak_quarkus_jdbc_engine].driver_jar_url }}"
|
url: "{{ keycloak_jdbc_download_url | default(keycloak_quarkus_default_jdbc[keycloak_quarkus_jdbc_engine].driver_jar_url) }}"
|
||||||
dest: "{{ keycloak.home }}/providers"
|
dest: "{{ keycloak.home }}/providers"
|
||||||
owner: "{{ keycloak.service_user }}"
|
owner: "{{ keycloak.service_user }}"
|
||||||
group: "{{ keycloak.service_group }}"
|
group: "{{ keycloak.service_group }}"
|
||||||
|
url_username: "{{ keycloak_jdbc_download_user | default(omit) }}"
|
||||||
|
url_password: "{{ keycloak_jdbc_download_pass | default(omit) }}"
|
||||||
mode: '0640'
|
mode: '0640'
|
||||||
become: true
|
become: true
|
||||||
notify:
|
notify:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue