inventory: vagrant: rename deprectated ansible_ssh_* (#50694)

This commit is contained in:
Jonathan Hanson 2019-01-09 01:44:15 -08:00 committed by René Moser
parent 6d605dc3f9
commit 468588d3f8

View file

@ -47,10 +47,10 @@ from ansible.module_utils.six.moves import StringIO
_group = 'vagrant' # a default group
_ssh_to_ansible = [('user', 'ansible_ssh_user'),
('hostname', 'ansible_ssh_host'),
_ssh_to_ansible = [('user', 'ansible_user'),
('hostname', 'ansible_host'),
('identityfile', 'ansible_ssh_private_key_file'),
('port', 'ansible_ssh_port')]
('port', 'ansible_port')]
# Options
# ------------------------------