initial commit

This commit is contained in:
admin 2025-01-27 01:22:15 +00:00
commit 14a9e6d7dd
3 changed files with 16 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
vault.yml

2
ansible.cfg Normal file
View File

@ -0,0 +1,2 @@
[defaults]
inventory = inventory

13
main.yml Normal file
View File

@ -0,0 +1,13 @@
---
- name: configure host
hosts: all
vars_files:
- vars
- vault.yml
tasks:
- import_tasks: tasks/setup.yml
tags: ['setup']