From ab3267d33ae923fa4ccf1c14e4503bfd321ecc2b Mon Sep 17 00:00:00 2001 From: Guillem Hernandez Sola Date: Wed, 19 Nov 2025 12:41:37 +0100 Subject: [PATCH] Added yaml inventory --- misc/all-hosts.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 misc/all-hosts.yaml diff --git a/misc/all-hosts.yaml b/misc/all-hosts.yaml new file mode 100644 index 0000000..6397a56 --- /dev/null +++ b/misc/all-hosts.yaml @@ -0,0 +1,20 @@ +database: + hosts: + db_server_1: 192.168.11.20 + ansible_connection: ssh + ansible_user: vagrant + ansible_ssh_password: vagrant + +loadbalancer: + hosts: + lb_server_1: 192.168.11.30 + ansible_connection: ssh + ansible_user: vagrant + ansible_ssh_password: vagrant + +webserver: + hosts: + ws_server_1: 192.168.11.40 + ansible_connection: ssh + ansible_user: vagrant + ansible_ssh_password: vagrant \ No newline at end of file