Fix documentation bugs. (#3321)

pull/3237/head
Felix Fontein 2021-09-01 07:33:22 +02:00 committed by GitHub
parent bf8df21d27
commit c121e8685f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -74,7 +74,7 @@ options:
type: str type: str
purge_users: purge_users:
description: description:
- Adds/remove users of the given access_level to match the given gitlab_user/gitlab_users_access list. - Adds/remove users of the given access_level to match the given I(gitlab_user)/I(gitlab_users_access) list.
If omitted do not purge orphaned members. If omitted do not purge orphaned members.
- Is only used when I(state=present). - Is only used when I(state=present).
type: list type: list
@ -104,7 +104,7 @@ EXAMPLES = r'''
state: absent state: absent
- name: Add a list of Users to A GitLab Group - name: Add a list of Users to A GitLab Group
gitlab_group_members: community.general.gitlab_group_members:
api_url: 'https://gitlab.example.com' api_url: 'https://gitlab.example.com'
api_token: 'Your-Private-Token' api_token: 'Your-Private-Token'
gitlab_group: groupname gitlab_group: groupname
@ -115,7 +115,7 @@ EXAMPLES = r'''
state: present state: present
- name: Add a list of Users with Dedicated Access Levels to A GitLab Group - name: Add a list of Users with Dedicated Access Levels to A GitLab Group
gitlab_group_members: community.general.gitlab_group_members:
api_url: 'https://gitlab.example.com' api_url: 'https://gitlab.example.com'
api_token: 'Your-Private-Token' api_token: 'Your-Private-Token'
gitlab_group: groupname gitlab_group: groupname
@ -127,7 +127,7 @@ EXAMPLES = r'''
state: present state: present
- name: Add a user, remove all others which might be on this access level - name: Add a user, remove all others which might be on this access level
gitlab_group_members: community.general.gitlab_group_members:
api_url: 'https://gitlab.example.com' api_url: 'https://gitlab.example.com'
api_token: 'Your-Private-Token' api_token: 'Your-Private-Token'
gitlab_group: groupname gitlab_group: groupname
@ -137,7 +137,7 @@ EXAMPLES = r'''
state: present state: present
- name: Remove a list of Users with Dedicated Access Levels to A GitLab Group - name: Remove a list of Users with Dedicated Access Levels to A GitLab Group
gitlab_group_members: community.general.gitlab_group_members:
api_url: 'https://gitlab.example.com' api_url: 'https://gitlab.example.com'
api_token: 'Your-Private-Token' api_token: 'Your-Private-Token'
gitlab_group: groupname gitlab_group: groupname