Native YAML - source_control/gitlab_group (#19054)
This commit is contained in:
parent
503f4c48db
commit
ba22514d47
1 changed files with 18 additions and 16 deletions
|
@ -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 = '''# '''
|
||||||
|
|
Loading…
Reference in a new issue