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 = '''
|
||||
- name: "Delete Gitlab Project"
|
||||
local_action: gitlab_project
|
||||
server_url="http://gitlab.dj-wasabi.local"
|
||||
validate_certs=false
|
||||
login_token="WnUzDsxjy8230-Dy_k"
|
||||
name=my_first_project
|
||||
state=absent
|
||||
- name: Delete Gitlab Project
|
||||
gitlab_project:
|
||||
server_url: http://gitlab.example.com
|
||||
validate_certs: False
|
||||
login_token: WnUzDsxjy8230-Dy_k
|
||||
name: my_first_project
|
||||
state: absent
|
||||
delegate_to: localhost
|
||||
|
||||
- name: "Create Gitlab Project in group Ansible"
|
||||
local_action: gitlab_project
|
||||
server_url="https://gitlab.dj-wasabi.local"
|
||||
validate_certs=true
|
||||
login_user=dj-wasabi
|
||||
login_password="MySecretPassword"
|
||||
name=my_first_project
|
||||
group=ansible
|
||||
issues_enabled=false
|
||||
wiki_enabled=true
|
||||
snippets_enabled=true
|
||||
import_url="http://git.example.com/example/lab.git"
|
||||
state=present
|
||||
- name: Create Gitlab Project in group Ansible
|
||||
gitlab_project:
|
||||
server_url: https://gitlab.example.com
|
||||
validate_certs: True
|
||||
login_user: dj-wasabi
|
||||
login_password: MySecretPassword
|
||||
name: my_first_project
|
||||
group: ansible
|
||||
issues_enabled: False
|
||||
wiki_enabled: True
|
||||
snippets_enabled: True
|
||||
import_url: http://git.example.com/example/lab.git
|
||||
state: present
|
||||
delegate_to: localhost
|
||||
'''
|
||||
|
||||
RETURN = '''# '''
|
||||
|
|
Loading…
Reference in a new issue