mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2026-03-26 21:33:03 +00:00
drop community.general from tasks/meta
This commit is contained in:
@@ -23,7 +23,6 @@ tags:
|
|||||||
- java
|
- java
|
||||||
dependencies:
|
dependencies:
|
||||||
"middleware_automation.redhat_csp_download": ">=1.2.1"
|
"middleware_automation.redhat_csp_download": ">=1.2.1"
|
||||||
"community.general": ">=5.6.0"
|
|
||||||
"ansible.posix": ">=1.4.0"
|
"ansible.posix": ">=1.4.0"
|
||||||
repository: https://github.com/ansible-middleware/keycloak
|
repository: https://github.com/ansible-middleware/keycloak
|
||||||
documentation: https://ansible-middleware.github.io/keycloak
|
documentation: https://ansible-middleware.github.io/keycloak
|
||||||
|
|||||||
@@ -2,5 +2,4 @@
|
|||||||
collections:
|
collections:
|
||||||
- name: middleware_automation.redhat_csp_download
|
- name: middleware_automation.redhat_csp_download
|
||||||
version: ">=1.2.1"
|
version: ">=1.2.1"
|
||||||
- name: community.general
|
|
||||||
- name: ansible.posix
|
- name: ansible.posix
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
when: keycloak_realm_exists.status == 404
|
when: keycloak_realm_exists.status == 404
|
||||||
|
|
||||||
- name: Create user federation
|
- name: Create user federation
|
||||||
community.general.keycloak_user_federation:
|
middleware_automation.keycloak.keycloak_user_federation:
|
||||||
auth_keycloak_url: "{{ keycloak_url }}{{ keycloak_context }}"
|
auth_keycloak_url: "{{ keycloak_url }}{{ keycloak_context }}"
|
||||||
auth_realm: "{{ keycloak_auth_realm }}"
|
auth_realm: "{{ keycloak_auth_realm }}"
|
||||||
auth_username: "{{ keycloak_admin_user }}"
|
auth_username: "{{ keycloak_admin_user }}"
|
||||||
@@ -65,7 +65,7 @@
|
|||||||
label: "{{ item.name | default('unnamed client') }}"
|
label: "{{ item.name | default('unnamed client') }}"
|
||||||
|
|
||||||
- name: Create or update a Keycloak client
|
- name: Create or update a Keycloak client
|
||||||
community.general.keycloak_client:
|
middleware_automation.keycloak.keycloak_client:
|
||||||
auth_client_id: "{{ keycloak_auth_client }}"
|
auth_client_id: "{{ keycloak_auth_client }}"
|
||||||
auth_keycloak_url: "{{ keycloak_url }}{{ keycloak_context }}"
|
auth_keycloak_url: "{{ keycloak_url }}{{ keycloak_context }}"
|
||||||
auth_realm: "{{ keycloak_auth_realm }}"
|
auth_realm: "{{ keycloak_auth_realm }}"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- name: Create client roles
|
- name: Create client roles
|
||||||
community.general.keycloak_role:
|
middleware_automation.keycloak.keycloak_role:
|
||||||
name: "{{ item }}"
|
name: "{{ item }}"
|
||||||
realm: "{{ client.realm }}"
|
realm: "{{ client.realm }}"
|
||||||
client_id: "{{ client.name }}"
|
client_id: "{{ client.name }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user