mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-05 10:20:27 -07:00
Fix logic in when clause
This commit is contained in:
parent
9e6a6f6076
commit
1a73c39a91
1 changed files with 1 additions and 2 deletions
|
@ -4,8 +4,7 @@
|
|||
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
|
||||
- (keycloak_jdbc_download_user is undefined and keycloak_jdbc_download_pass is not undefined) or (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:
|
||||
url: "{{ keycloak_jdbc_download_url | default(keycloak_quarkus_default_jdbc[keycloak_quarkus_jdbc_engine].driver_jar_url) }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue