12 lines
246 B
YAML
12 lines
246 B
YAML
---
|
|
- name: Checkout secrets
|
|
hosts: localhost
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Checkout secrets
|
|
ansible.builtin.git:
|
|
repo: 'git@git.k-space.ee:secretspace/ansible.git'
|
|
dest: secrets
|
|
update: yes
|
|
version: main
|