From a177be5312b864cbb9a21ca6e141ecb086a51eb7 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Wed, 29 May 2024 18:47:37 +0200 Subject: [PATCH] keycloak wait for the listening port using the correct interface. --- tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/main.yml b/tasks/main.yml index 50f66d4..fd9a013 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -38,6 +38,7 @@ - name: Wait for the service to be up before proceeding ansible.builtin.wait_for: + host: "{{ keycloak_listen }}" port: "{% if keycloak_https_enabled %}{{ keycloak_https_port }}{% else %}{{ keycloak_http_port }}{% endif %}" delay: 10 timeout: 90