From b502b1ee2b70eeeb2740bae4f233d29a92a50f4c Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 9 Oct 2025 21:21:35 +0200 Subject: [PATCH] =?UTF-8?q?refactor=20=E2=99=BB=EF=B8=8F:=20Refactored=20t?= =?UTF-8?q?he=20requirements.yml=20file=20to=20use=20SSH=20for=20cloning?= =?UTF-8?q?=20repositories=20instead=20of=20HTTPS.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the `requirements.yml` file to use SSH for cloning repositories, which improves security and reduces the risk of exposing credentials. This change ensures that the playbook can access the required roles without exposing sensitive information. --- tasks/requirements.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/requirements.yml b/tasks/requirements.yml index 90474b5..24e3e56 100644 --- a/tasks/requirements.yml +++ b/tasks/requirements.yml @@ -1,13 +1,13 @@ # requirements.yml -- name: samba_domain_member role +- name: samba_domain_member src: git+https://repo.piave7.duckdns.org/Jose/ansible_samba_domain_member.git version: main -- name: samba_ad_dc role +- name: samba_ad_dc src: git+https://repo.piave7.duckdns.org/Jose/ansible_samba_ad_dc.git version: main -- name: samba_windows_share role - src: git+ssh@repo.piave7.dedyn.io:Jose/ansible_samba_windows_share.git +- name: samba_windows_share + src: git+ssh@repo.piave7.dedyn.io/Jose/ansible_samba_windows_share.git version: main