commit 6fbf76cf82873516212c455fa285a0fdea29ea6d Author: Corbin Bartsch Date: Mon Sep 19 14:32:59 2022 -0400 Create Ansible project template diff --git a/ansible.cfg b/ansible.cfg new file mode 100644 index 0000000..7579897 --- /dev/null +++ b/ansible.cfg @@ -0,0 +1,4 @@ +[defaults] +retry_files_enabled = False +inventory = ./inventory.yaml +vault_password_file = ./.vault-password diff --git a/files/pre-commit b/files/pre-commit new file mode 100644 index 0000000..91953f4 --- /dev/null +++ b/files/pre-commit @@ -0,0 +1,16 @@ +# Pre-commit hook to ensure vault.yaml is encrypted +# +# Credit goes to Nick Busey from HomelabOS for this neat little trick +# https://gitlab.com/NickBusey/HomelabOS/-/issues/355 + +if ( git show :vars/vault.yaml | grep -q "$ANSIBLE_VAULT;" ); then +echo "\e[38;5;108mVault Encrypted. Safe to commit.\e[0m" +else +echo "\e[38;5;208mVault not encrypted! Run 'make encrypt' and try again.\e[0m" +exit 1 +fi + +command -v yamllint > /dev/null && echo "Running yamllint..." && yamllint . || exit 1 +command -v ansible-lint > /dev/null && echo "Running ansible-lint..." ansible-lint + +# vi: ft=sh diff --git a/group_vars/all.yaml b/group_vars/all.yaml new file mode 100644 index 0000000..e9fa5c1 --- /dev/null +++ b/group_vars/all.yaml @@ -0,0 +1 @@ +---\n diff --git a/host_vars/host.yaml b/host_vars/host.yaml new file mode 100644 index 0000000..e9fa5c1 --- /dev/null +++ b/host_vars/host.yaml @@ -0,0 +1 @@ +---\n diff --git a/inventory.yaml b/inventory.yaml new file mode 100644 index 0000000..e9fa5c1 --- /dev/null +++ b/inventory.yaml @@ -0,0 +1 @@ +---\n diff --git a/playbooks/localhost_setup.yaml b/playbooks/localhost_setup.yaml new file mode 100644 index 0000000..5bb5c83 --- /dev/null +++ b/playbooks/localhost_setup.yaml @@ -0,0 +1,17 @@ +--- +- name: Localhost setup + hosts: 127.0.0.1 + tasks: + - name: Install packages + ansible.builtin.package: + name: "{{ item }}" + state: present + with_items: + - yamllint + - ansible-lint + + - name: Set up git pre-commit hooks + ansible.builtin.copy: + src: ../files/pre-commit + dest: ../.git/hooks/pre-commit + mode: 0755 diff --git a/roles/requirements.yaml b/roles/requirements.yaml new file mode 100644 index 0000000..e9fa5c1 --- /dev/null +++ b/roles/requirements.yaml @@ -0,0 +1 @@ +---\n