Fix missing gather_facts.

This commit is contained in:
yohan 2024-06-15 18:11:00 +02:00
parent 571e18d864
commit 06e66ac6b9

View File

@ -3,8 +3,13 @@
tags: create
vars_files:
- vars/main.yml
gather_facts: true
gather_facts: false
tasks:
- name: Gather facts
ansible.builtin.setup:
tags:
- always
- name: Retrieve secrets
ansible.builtin.include_tasks:
file: "tasks/retrieve_secret_vars.yml"