From 876f30ea6cdef52b7fe7828c276c18b3f05c68ba Mon Sep 17 00:00:00 2001 From: Claude AI Date: Tue, 6 Jan 2026 14:37:27 +0000 Subject: [PATCH] feat(ansible): Add common variables --- .../webserver-automation/group_vars/all.yml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ansible/webserver-automation/group_vars/all.yml diff --git a/ansible/webserver-automation/group_vars/all.yml b/ansible/webserver-automation/group_vars/all.yml new file mode 100644 index 0000000..1b291a5 --- /dev/null +++ b/ansible/webserver-automation/group_vars/all.yml @@ -0,0 +1,25 @@ +--- +# Common variables + +timezone: "UTC" + +admin_users: + - name: admin + groups: sudo + shell: /bin/bash + +common_packages: + - curl + - wget + - git + - vim + - htop + - ufw + +ssh_port: 22 +ssh_password_authentication: false + +firewall_allowed_tcp_ports: + - 22 + - 80 + - 443