Add test playbook

This commit is contained in:
Corbin Bartsch 2022-09-15 10:20:33 -04:00
parent 1ba32043ce
commit ab079d3e26
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212
2 changed files with 17 additions and 0 deletions

2
makefile Normal file
View File

@ -0,0 +1,2 @@
test:
ansible-playbook test.yaml

15
test.yaml Normal file
View File

@ -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