feat: Reorganizes some of the roles and renames some variables

This commit is contained in:
2024-11-27 16:59:22 -05:00
parent ee91b060eb
commit 2692509fbe
9 changed files with 159 additions and 94 deletions

View File

@@ -29,7 +29,8 @@
tasks:
- name: Test complex var, set fact.
ansible.builtin.set_fact:
template_path: "{{ template.path | default('.build') }}"
template:
path: "{{ template.path | default('.build') }}"
vars:
template:
repo:
@@ -54,7 +55,7 @@
- name: Test complex var was set.
ansible.builtin.debug:
msg: "Template path: {{ template_path }}, specified: {{ template_path_specified | default(false) }}"
msg: "Template path: {{ template.path }}, specified: {{ template_path_specified | default(false) }}"
tags:
- vars
- never