--- | |
# keycloak molecule/default/verify.yml | |
# | |
# SPDX-FileCopyrightText: © 2021 Open Networking Foundation <support@opennetworking.org> | |
# SPDX-License-Identifier: Apache-2.0 | |
- name: Verify | |
hosts: all | |
tasks: | |
- name: Check that Keycloak is running with configured username/password | |
community.general.keycloak_client: | |
auth_keycloak_url: http://localhost:8080/auth | |
auth_realm: master | |
auth_username: "{{ keycloak_admin_username }}" | |
auth_password: "{{ keycloak_admin_password }}" | |
client_id: test | |
state: present |