Fix private key paths in the deploy-env role README.md

Change-Id: Ie240f79fbd4162961f28e5c9094bb5b70bae8a3f
This commit is contained in:
Vladimir Kozhukalov 2023-10-25 15:25:55 -05:00
parent a430d16bd5
commit 0cd77664e0
1 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ all:
ansible_port: 22
ansible_host: 10.10.10.10
ansible_user: ubuntu
ansible_ssh_private_key_file: /home/ubuntu/.ssh/id_rsa.pub
ansible_ssh_private_key_file: /home/ubuntu/.ssh/id_rsa
ansible_ssh_extra_args: -o StrictHostKeyChecking=no
nodes:
hosts:
@ -26,12 +26,12 @@ all:
ansible_port: 22
ansible_host: 10.10.10.11
ansible_user: ubuntu
ansible_ssh_private_key_file: /home/ubuntu/.ssh/id_rsa.pub
ansible_ssh_private_key_file: /home/ubuntu/.ssh/id_rsa
ansible_ssh_extra_args: -o StrictHostKeyChecking=no
node-2:
ansible_port: 22
ansible_host: 10.10.10.12
ansible_user: ubuntu
ansible_ssh_private_key_file: /home/ubuntu/.ssh/id_rsa.pub
ansible_ssh_private_key_file: /home/ubuntu/.ssh/id_rsa
ansible_ssh_extra_args: -o StrictHostKeyChecking=no
```