drop community.general from tasks/meta

This commit is contained in:
Guido Grazioli 2023-03-07 17:07:27 +01:00
parent e15ebd3233
commit 00ae087732
No known key found for this signature in database
GPG key ID: 22C8C31EF2BC093B
4 changed files with 3 additions and 5 deletions

View file

@ -23,7 +23,6 @@ tags:
- java
dependencies:
"middleware_automation.redhat_csp_download": ">=1.2.1"
"community.general": ">=5.6.0"
"ansible.posix": ">=1.4.0"
repository: https://github.com/ansible-middleware/keycloak
documentation: https://ansible-middleware.github.io/keycloak

View file

@ -2,5 +2,4 @@
collections:
- name: middleware_automation.redhat_csp_download
version: ">=1.2.1"
- name: community.general
- name: ansible.posix

View file

@ -36,7 +36,7 @@
when: keycloak_realm_exists.status == 404
- name: Create user federation
community.general.keycloak_user_federation:
middleware_automation.keycloak.keycloak_user_federation:
auth_keycloak_url: "{{ keycloak_url }}{{ keycloak_context }}"
auth_realm: "{{ keycloak_auth_realm }}"
auth_username: "{{ keycloak_admin_user }}"
@ -65,7 +65,7 @@
label: "{{ item.name | default('unnamed client') }}"
- name: Create or update a Keycloak client
community.general.keycloak_client:
middleware_automation.keycloak.keycloak_client:
auth_client_id: "{{ keycloak_auth_client }}"
auth_keycloak_url: "{{ keycloak_url }}{{ keycloak_context }}"
auth_realm: "{{ keycloak_auth_realm }}"

View file

@ -1,5 +1,5 @@
- name: Create client roles
community.general.keycloak_role:
middleware_automation.keycloak.keycloak_role:
name: "{{ item }}"
realm: "{{ client.realm }}"
client_id: "{{ client.name }}"