3
0
forked from jakub/ansible
Files
ansible_fencl/host_vars/portainer.yml
fencl 71fd262c40 E
2025-10-03 15:43:59 +02:00

19 lines
606 B
YAML

ansible_user: howard
ansible_password: "Papadopolus0" # English: SSH password for howard@portainer
ansible_connection: ssh
ansible_port: 22
ansible_ssh_common_args: >-
-o StrictHostKeyChecking=no
-o UserKnownHostsFile=/dev/null
-J root@192.168.69.2
# English: We escalate to root via sudo.
ansible_become: true
ansible_become_method: sudo
# English: SUDO password for howard (often same as SSH password; change if different).
ansible_become_password: "Papadopolus0"
# (Optional, for older installs—harmless to keep both)
ansible_ssh_pass: "Papadopolus0"
ansible_sudo_pass: "Papadopolus0"