mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-07-29 08:01:33 -07:00
Close #228: add support for custom env vars in sysconfig file
This commit is contained in:
parent
1b69191a6e
commit
6d01ffbb77
5 changed files with 22 additions and 1 deletions
|
@ -75,3 +75,13 @@
|
|||
quiet: true
|
||||
fail_msg: "Policy definition is incorrect: `name` and one of `url` are mandatory, `type` needs to be left empty or one of {{ keycloak_quarkus_supported_policy_types }}."
|
||||
loop: "{{ keycloak_quarkus_policies }}"
|
||||
|
||||
- name: "Validate additional env variables"
|
||||
ansible.builtin.assert:
|
||||
that:
|
||||
- item.key is defined and item.key | length > 0
|
||||
- item.value is defined and item.value | length > 0
|
||||
quiet: true
|
||||
fail_msg: "Additional env variable definition is incorrect: `key` and `value` are mandatory."
|
||||
no_log: true
|
||||
loop: "{{ keycloak_quarkus_additional_env_vars }}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue