From eb2a553eab3e2e8deefbf7e510fd0c8c7bf3ca81 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Tue, 6 Jan 2026 14:36:48 +0000 Subject: [PATCH] feat(ansible): Add ansible configuration --- ansible/webserver-automation/ansible.cfg | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ansible/webserver-automation/ansible.cfg diff --git a/ansible/webserver-automation/ansible.cfg b/ansible/webserver-automation/ansible.cfg new file mode 100644 index 0000000..3bfe585 --- /dev/null +++ b/ansible/webserver-automation/ansible.cfg @@ -0,0 +1,14 @@ +[defaults] +inventory = inventory/production +remote_user = ubuntu +host_key_checking = False +private_key_file = ~/.ssh/id_rsa +retry_files_enabled = False +roles_path = roles +gathering = smart +stdout_callback = yaml +become = True +become_method = sudo + +[ssh_connection] +pipelining = True