Native YAML - source_control/gitlab_group (#19054)

This commit is contained in:
Fabio Alessandro Locati 2016-12-09 10:48:33 +00:00 committed by John R Barker
parent 503f4c48db
commit ba22514d47

View file

@ -78,23 +78,25 @@ options:
''' '''
EXAMPLES = ''' EXAMPLES = '''
- name: "Delete Gitlab Group" - name: Delete Gitlab Group
local_action: gitlab_group gitlab_group:
server_url="http://gitlab.dj-wasabi.local" server_url: http://gitlab.example.com
validate_certs=false validate_certs: False
login_token="WnUzDsxjy8230-Dy_k" login_token: WnUzDsxjy8230-Dy_k
name=my_first_group name: my_first_group
state=absent state: absent
delegate_to: localhost
- name: "Create Gitlab Group" - name: Create Gitlab Group
local_action: gitlab_group gitlab_group:
server_url="https://gitlab.dj-wasabi.local" server_url: https://gitlab.example.com
validate_certs=true validate_certs: True
login_user=dj-wasabi login_user: dj-wasabi
login_password="MySecretPassword" login_password: MySecretPassword
name=my_first_group name: my_first_group
path=my_first_group path: my_first_group
state=present state: present
delegate_to: localhost
''' '''
RETURN = '''# ''' RETURN = '''# '''