From ab079d3e262ab03b77dc55634419b458ffe0956d Mon Sep 17 00:00:00 2001 From: Corbin Bartsch Date: Thu, 15 Sep 2022 10:20:33 -0400 Subject: [PATCH] Add test playbook --- makefile | 2 ++ test.yaml | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 makefile create mode 100644 test.yaml 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