diff --git a/lib/ansible/modules/source_control/gitlab_group.py b/lib/ansible/modules/source_control/gitlab_group.py index 21837eb16ec..fb4e05cac49 100644 --- a/lib/ansible/modules/source_control/gitlab_group.py +++ b/lib/ansible/modules/source_control/gitlab_group.py @@ -87,7 +87,7 @@ options: EXAMPLES = ''' - name: "Delete GitLab Group" gitlab_group: - api_url: https://gitlab.example.com/ + server_url: https://gitlab.example.com/ api_token: "{{ access_token }}" validate_certs: False name: my_first_group @@ -95,7 +95,7 @@ EXAMPLES = ''' - name: "Create GitLab Group" gitlab_group: - api_url: https://gitlab.example.com/ + server_url: https://gitlab.example.com/ validate_certs: True api_username: dj-wasabi api_password: "MySecretPassword" @@ -106,7 +106,7 @@ EXAMPLES = ''' # The group will by created at https://gitlab.dj-wasabi.local/super_parent/parent/my_first_group - name: "Create GitLab SubGroup" gitlab_group: - api_url: https://gitlab.example.com/ + server_url: https://gitlab.example.com/ validate_certs: True api_username: dj-wasabi api_password: "MySecretPassword"