Hi,
If you need to connect to multiple nodes using different passwords, saving the password on the Default Node Executor does not work. The correct method is to save the various passwords on the Key Storage and refer to them in the node definition; please see this.
To use a password saved on the Rundeck Key Storage, your node definition should be as follows:
node01: nodename: node01 hostname: 192.168.56.10 osFamily: unix description: rocky ssh-authentication: password ssh-password-storage-path: keys/mypassword tags: rocky username: vagrantNote the ssh-authentication and ssh-password-storage-path attributes.
If you want a job level authentication method, the node definition should be:
node01: nodename: node01 hostname: 192.168.56.10 osFamily: unix description: rocky ssh-authentication: password ssh-password-option: option.mypassword tags: rocky username: vagrantWhen the ssh-password-option attribute is used, it must point to a job option with the password.
Hope it helps!