mg
492ac5b187
Group Vars und Inventory hinzugefügt Gruppe umbenannt, bindestrich nicht in gruppennamen erlaubt wip Einrückung Datei richtig benannt playbook mit richtiger rolle readme meta doku dict collectipn in doku doku funktioniert
13 lines
498 B
YAML
13 lines
498 B
YAML
---
|
|
- name: "register_runner"
|
|
community.general.gitlab_runner:
|
|
api_url: "{{ item.api_url }}"
|
|
registration_token: "{{ item.registration_token }}"
|
|
api_token: "{{ item.api_token }}"
|
|
description: "{{ item.description|default('GitLab-Runner') }}"
|
|
state: "{{ item.state|default('present') }}"
|
|
active: "{{ item.active|default('True') }}"
|
|
run_untagged: True
|
|
locked: "{{ item.locked|default('False') }}"
|
|
loop: "{{ gitlab_runner }}"
|
|
no_log: true
|