diff --git a/roles/keycloak/meta/argument_specs.yml b/roles/keycloak/meta/argument_specs.yml index 8601d1e..a464bc9 100644 --- a/roles/keycloak/meta/argument_specs.yml +++ b/roles/keycloak/meta/argument_specs.yml @@ -333,11 +333,11 @@ argument_specs: description: "systemd description for Red Hat Single Sign-On" type: "str" sso_patch_version: - default: "7.6.1" - description: "Red Hat Single Sign-On latest cumulative patch version" + required: False + description: "Red Hat Single Sign-On latest cumulative patch version to apply; default to latest version when sso_apply_patches is True" type: "str" sso_patch_bundle: - default: "rh-sso-{{ sso_patch_version }}-patch.zip" + default: "rh-sso-{{ sso_patch_version | default('') }}-patch.zip" description: "Red Hat SSO patch archive filename" type: "str" sso_product_category: diff --git a/roles/keycloak/tasks/install.yml b/roles/keycloak/tasks/install.yml index c4d72f4..5973e9a 100644 --- a/roles/keycloak/tasks/install.yml +++ b/roles/keycloak/tasks/install.yml @@ -109,7 +109,7 @@ - name: Determine install zipfile from search results ansible.builtin.set_fact: - rhn_filtered_products: "{{ rhn_products.results | selectattr('file_path', 'match', '[^/]*/{{ sso_archive }}$') }}" + rhn_filtered_products: "{{ rhn_products.results | selectattr('file_path', 'match', '[^/]*/' + sso_archive + '$') }}"  delegate_to: localhost  run_once: yes