summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBrian Coca <bcoca@users.noreply.github.com>2023-03-07 11:09:14 -0500
committerGitHub <noreply@github.com>2023-03-07 10:09:14 -0600
commita1bff416edf9b9c8bd5c3b002277eed5b5323953 (patch)
tree7334db29c39009a0c5c7eb115f3dd8ebb82edd37 /test
parent694f12d01b17e4aba50bda55546edada6e79b5a8 (diff)
downloadansible-a1bff416edf9b9c8bd5c3b002277eed5b5323953.tar.gz
paramiko connection now uses the correct source of data (#79704)
* paramiko connection now uses the correct source of data * keep orig name * added missing port to docs * Update changelogs/fragments/paramiko_config.yml Co-authored-by: Sloane Hertel <19572925+s-hertel@users.noreply.github.com> * test ansible_host templating * added missing private_key_file * removed all play_context fallbacks * Update lib/ansible/plugins/connection/paramiko_ssh.py Co-authored-by: Jordan Borean <jborean93@gmail.com> * Update lib/ansible/plugins/connection/paramiko_ssh.py Co-authored-by: Jordan Borean <jborean93@gmail.com> --------- Co-authored-by: Sloane Hertel <19572925+s-hertel@users.noreply.github.com> Co-authored-by: Jordan Borean <jborean93@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/integration/targets/connection_paramiko_ssh/test_connection.inventory2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/connection_paramiko_ssh/test_connection.inventory b/test/integration/targets/connection_paramiko_ssh/test_connection.inventory
index a3f34ab70f..cd17c0904c 100644
--- a/test/integration/targets/connection_paramiko_ssh/test_connection.inventory
+++ b/test/integration/targets/connection_paramiko_ssh/test_connection.inventory
@@ -2,6 +2,6 @@
paramiko_ssh-pipelining ansible_ssh_pipelining=true
paramiko_ssh-no-pipelining ansible_ssh_pipelining=false
[paramiko_ssh:vars]
-ansible_host=localhost
+ansible_host={{ 'localhost'|string }}
ansible_connection=paramiko_ssh
ansible_python_interpreter="{{ ansible_playbook_python }}"