Native YAML - source_control/gitlab_project (#19062)
* Native YAML - source_control/gitlab_project * Use example domain as for RFC2606
This commit is contained in:
parent
345e39e1b1
commit
3fa1ddc9db
1 changed files with 22 additions and 20 deletions
|
@ -136,27 +136,29 @@ options:
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
- name: "Delete Gitlab Project"
|
- name: Delete Gitlab Project
|
||||||
local_action: gitlab_project
|
gitlab_project:
|
||||||
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_project
|
name: my_first_project
|
||||||
state=absent
|
state: absent
|
||||||
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: "Create Gitlab Project in group Ansible"
|
- name: Create Gitlab Project in group Ansible
|
||||||
local_action: gitlab_project
|
gitlab_project:
|
||||||
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_project
|
name: my_first_project
|
||||||
group=ansible
|
group: ansible
|
||||||
issues_enabled=false
|
issues_enabled: False
|
||||||
wiki_enabled=true
|
wiki_enabled: True
|
||||||
snippets_enabled=true
|
snippets_enabled: True
|
||||||
import_url="http://git.example.com/example/lab.git"
|
import_url: http://git.example.com/example/lab.git
|
||||||
state=present
|
state: present
|
||||||
|
delegate_to: localhost
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''# '''
|
RETURN = '''# '''
|
||||||
|
|
Loading…
Reference in a new issue