|
| 1 | +--- |
| 2 | +# Copyright Red Hat, Inc. |
| 3 | +# All Rights Reserved. |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 6 | +# not use this file except in compliance with the License. You may obtain |
| 7 | +# a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | +# License for the specific language governing permissions and limitations |
| 15 | +# under the License. |
| 16 | + |
| 17 | +- name: Create a Keycloak realm |
| 18 | + community.general.keycloak_realm: |
| 19 | + auth_client_id: admin-cli |
| 20 | + validate_certs: "{{ cifmw_federation_keycloak_url_validate_certs }}" |
| 21 | + auth_keycloak_url: "{{ cifmw_federation_keycloak_url }}/auth" |
| 22 | + auth_realm: master |
| 23 | + auth_username: "{{ cifmw_federation_keycloak_admin_username }}" |
| 24 | + auth_password: "{{ cifmw_federation_keycloak_admin_password }}" |
| 25 | + id: "{{ cifmw_federation_keycloak_realm }}" |
| 26 | + realm: "{{ cifmw_federation_keycloak_realm }}" |
| 27 | + enabled: true |
| 28 | + state: present |
| 29 | + |
| 30 | +- name: Create Keycloak client |
| 31 | + community.general.keycloak_client: |
| 32 | + auth_client_id: admin-cli |
| 33 | + validate_certs: "{{ cifmw_federation_keycloak_url_validate_certs }}" |
| 34 | + auth_keycloak_url: "{{ cifmw_federation_keycloak_url }}/auth" |
| 35 | + auth_realm: master |
| 36 | + auth_username: "{{ cifmw_federation_keycloak_admin_username }}" |
| 37 | + auth_password: "{{ cifmw_federation_keycloak_admin_password }}" |
| 38 | + state: present |
| 39 | + realm: "{{ cifmw_federation_keycloak_realm }}" |
| 40 | + client_id: "{{ cifmw_federation_keycloak_client_id }}" |
| 41 | + id: 3fb4f68d-ad2c-46e7-a579-ea418f5d150b |
| 42 | + name: 'RHOSO Client' |
| 43 | + description: 'RHOSO client for keystone federation' |
| 44 | + root_url: "{{ cifmw_federation_keystone_url }}" |
| 45 | + admin_url: "{{ cifmw_federation_keystone_url }}" |
| 46 | + base_url: '/projects/dashboard' |
| 47 | + enabled: true |
| 48 | + client_authenticator_type: client-secret |
| 49 | + secret: "{{ cifmw_federation_keycloak_client_secret }}" |
| 50 | + redirect_uris: |
| 51 | + - "{{ cifmw_federation_keystone_url }}/v3/auth/OS-FEDERATION/identity_providers/kcIDP/protocols/openid/websso" |
| 52 | + - "{{ cifmw_federation_keystone_url }}/v3/auth/OS-FEDERATION/websso/openid" |
| 53 | + web_origins: |
| 54 | + - "{{ cifmw_federation_keystone_url }}" |
| 55 | + bearer_only: false |
| 56 | + public_client: false |
| 57 | + protocol: openid-connect |
| 58 | + |
| 59 | +- name: Create a Keycloak group1 |
| 60 | + community.general.keycloak_group: |
| 61 | + auth_client_id: admin-cli |
| 62 | + validate_certs: "{{ cifmw_federation_keycloak_url_validate_certs }}" |
| 63 | + auth_keycloak_url: "{{ cifmw_federation_keycloak_url }}/auth" |
| 64 | + auth_realm: master |
| 65 | + auth_username: "{{ cifmw_federation_keycloak_admin_username }}" |
| 66 | + auth_password: "{{ cifmw_federation_keycloak_admin_password }}" |
| 67 | + state: present |
| 68 | + name: "{{ cifmw_federation_keycloak_testgroup1_name }}" |
| 69 | + realm: "{{ cifmw_federation_keycloak_realm }}" |
| 70 | + |
| 71 | +- name: Create a Keycloak group2 |
| 72 | + community.general.keycloak_group: |
| 73 | + auth_client_id: admin-cli |
| 74 | + validate_certs: "{{ cifmw_federation_keycloak_url_validate_certs }}" |
| 75 | + auth_keycloak_url: "{{ cifmw_federation_keycloak_url }}/auth" |
| 76 | + auth_realm: master |
| 77 | + auth_username: "{{ cifmw_federation_keycloak_admin_username }}" |
| 78 | + auth_password: "{{ cifmw_federation_keycloak_admin_password }}" |
| 79 | + state: present |
| 80 | + name: "{{ cifmw_federation_keycloak_testgroup2_name }}" |
| 81 | + realm: "{{ cifmw_federation_keycloak_realm }}" |
| 82 | + |
| 83 | +- name: Create keycloak user1 |
| 84 | + community.general.keycloak_user: |
| 85 | + auth_client_id: admin-cli |
| 86 | + validate_certs: "{{ cifmw_federation_keycloak_url_validate_certs }}" |
| 87 | + auth_keycloak_url: "{{ cifmw_federation_keycloak_url }}/auth" |
| 88 | + auth_realm: master |
| 89 | + auth_username: "{{ cifmw_federation_keycloak_admin_username }}" |
| 90 | + auth_password: "{{ cifmw_federation_keycloak_admin_password }}" |
| 91 | + state: present |
| 92 | + realm: "{{ cifmw_federation_keycloak_realm }}" |
| 93 | + username: "{{ cifmw_federation_keycloak_testuser1_username }}" |
| 94 | + firstName: firstname1 |
| 95 | + lastName: lastname1 |
| 96 | + email: "{{ cifmw_federation_keycloak_testuser1_username }}@ocp.openstack.lab" |
| 97 | + enabled: true |
| 98 | + emailVerified: false |
| 99 | + credentials: |
| 100 | + - type: password |
| 101 | + value: "{{ cifmw_federation_keycloak_testuser1_password }}" |
| 102 | + temporary: false |
| 103 | + groups: |
| 104 | + - name: "{{ cifmw_federation_keycloak_testgroup1_name }}" |
| 105 | + state: present |
| 106 | + |
| 107 | +- name: Create keycloak user2 |
| 108 | + community.general.keycloak_user: |
| 109 | + auth_client_id: admin-cli |
| 110 | + validate_certs: "{{ cifmw_federation_keycloak_url_validate_certs }}" |
| 111 | + auth_keycloak_url: "{{ cifmw_federation_keycloak_url }}/auth" |
| 112 | + auth_realm: master |
| 113 | + auth_username: "{{ cifmw_federation_keycloak_admin_username }}" |
| 114 | + auth_password: "{{ cifmw_federation_keycloak_admin_password }}" |
| 115 | + state: present |
| 116 | + realm: "{{ cifmw_federation_keycloak_realm }}" |
| 117 | + username: "{{ cifmw_federation_keycloak_testuser2_username }}" |
| 118 | + firstName: firstname2 |
| 119 | + lastName: lastname2 |
| 120 | + email: "{{ cifmw_federation_keycloak_testuser2_username }}@ocp.openstack.lab" |
| 121 | + enabled: true |
| 122 | + emailVerified: false |
| 123 | + credentials: |
| 124 | + - type: password |
| 125 | + value: "{{ cifmw_federation_keycloak_testuser2_password }}" |
| 126 | + temporary: false |
| 127 | + groups: |
| 128 | + - name: "{{ cifmw_federation_keycloak_testgroup2_name }}" |
| 129 | + state: present |
0 commit comments