diff --git a/makefile b/makefile new file mode 100644 index 0000000..83d8b8e --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +test: + ansible-playbook test.yaml diff --git a/test.yaml b/test.yaml new file mode 100644 index 0000000..ef7f5f7 --- /dev/null +++ b/test.yaml @@ -0,0 +1,15 @@ + +--- +- hosts: 127.0.0.1 + vars_files: + - defaults/main.yaml + tasks: + - name: Test Jinja2 templates + check_mode: true + diff: true + ansible.builtin.template: + src: "{{ item }}" + dest: "/tmp/{{ item }}" + with_items: + - templates/sshd_config.j2 + - templates/issue.net.j2