Private
Public Access
2
0

First commit

This commit is contained in:
2026-01-07 14:27:55 +03:00
commit 0ffc9385c3
47 changed files with 11658 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
linux:
vars:
ansible_user: "root"
ansible_python_interpreter: "/usr/bin/python3.12"
proxy:
hosts:
proxy1:
www:
hosts:
www1:
www2:
www3:
waf:
hosts:
waf1:
waf2:
waf3:

6
ansible/inventory/multipass.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
multipass list --format=json |jq '{
_meta: {hostvars: [.list[] | {(.name): {ansible_host: .ipv4[-1]}}] | add},
linux: {hosts: [.list[].name]}
}'