modules: fix examples to use FQCN (#644)

* modules: fix examples to use FQCN

* fix

* fix

* fix
This commit is contained in:
Andrew Klychkov 2020-07-13 22:50:31 +03:00 committed by GitHub
commit 41cfdda6a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
533 changed files with 2130 additions and 2130 deletions

View file

@ -82,7 +82,7 @@ author:
EXAMPLES = '''
- name: Create a Keycloak group
keycloak_group:
community.general.keycloak_group:
name: my-new-kc-group
realm: MyCustomRealm
state: present
@ -94,7 +94,7 @@ EXAMPLES = '''
delegate_to: localhost
- name: Delete a keycloak group
keycloak_group:
community.general.keycloak_group:
id: '9d59aa76-2755-48c6-b1af-beb70a82c3cd'
state: absent
realm: MyCustomRealm
@ -106,7 +106,7 @@ EXAMPLES = '''
delegate_to: localhost
- name: Delete a Keycloak group based on name
keycloak_group:
community.general.keycloak_group:
name: my-group-for-deletion
state: absent
auth_client_id: admin-cli
@ -117,7 +117,7 @@ EXAMPLES = '''
delegate_to: localhost
- name: Update the name of a Keycloak group
keycloak_group:
community.general.keycloak_group:
id: '9d59aa76-2755-48c6-b1af-beb70a82c3cd'
name: an-updated-kc-group-name
state: present
@ -129,7 +129,7 @@ EXAMPLES = '''
delegate_to: localhost
- name: Create a keycloak group with some custom attributes
keycloak_group:
community.general.keycloak_group:
auth_client_id: admin-cli
auth_keycloak_url: https://auth.example.com/auth
auth_realm: master