blob: f05340a1ff2aa853fac194dec27f156906aee004 [file] [log] [blame]
Hung-Wei Chiu6a075af2021-09-09 22:33:06 +00001---
2# keycloak molecule/default/verify.yml
3#
4# SPDX-FileCopyrightText: © 2021 Open Networking Foundation <support@opennetworking.org>
5# SPDX-License-Identifier: Apache-2.0
6
7- name: Verify
8 hosts: all
9 tasks:
10 - name: Check that Keycloak is running with configured username/password
11 community.general.keycloak_client:
12 auth_keycloak_url: http://localhost:8080/auth
13 auth_realm: master
14 auth_username: "{{ keycloak_admin_username }}"
15 auth_password: "{{ keycloak_admin_password }}"
16 client_id: test
17 state: present