From ee20edd7514bfc1eff8b0884d24421cca86de1d8 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Tue, 6 Jan 2026 14:36:58 +0000 Subject: [PATCH] feat(ansible): Add production inventory --- ansible/webserver-automation/inventory/production | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ansible/webserver-automation/inventory/production diff --git a/ansible/webserver-automation/inventory/production b/ansible/webserver-automation/inventory/production new file mode 100644 index 0000000..7a3c5a0 --- /dev/null +++ b/ansible/webserver-automation/inventory/production @@ -0,0 +1,11 @@ +# Production Inventory + +[webservers] +web1.example.com ansible_host=192.168.1.10 +web2.example.com ansible_host=192.168.1.11 + +[all:vars] +ansible_user=ubuntu +ansible_ssh_private_key_file=~/.ssh/id_rsa +ansible_python_interpreter=/usr/bin/python3 +environment=production