mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-23 12:33:59 -07:00
added note about ansible_ssh_* change
added a note like the following to each file hit with unlabled 2.0 changes... Ansible 2.0 moved away from using ansible_ssh_* variables to accepting ansible_* variables. If you are using a version of Ansible prior to 2.0, you should continue using the older style variables (ansible_ssh_*), such as ansible_ssh_user instead of ansible_user and ansible_ssh_port instead of ansible_port, which appear in the following content. These shorter variables are ignored, without warning, in older versions of Ansible.
This commit is contained in:
parent
9e364c2eb5
commit
6af2b2a4cb
6 changed files with 30 additions and 1 deletions
|
@ -64,8 +64,17 @@ For numeric patterns, leading zeros can be included or removed, as desired. Rang
|
|||
[databases]
|
||||
db-[a:f].example.com
|
||||
|
||||
|
||||
You can also select the connection type and user on a per host basis::
|
||||
|
||||
.. note::
|
||||
|
||||
Ansible 2.0 has depricated the “ssh” from ``ansible_ssh_user``, ``ansible_ssh_host``, and ``ansible_ssh_port`` to become ``ansible_user``, ``ansible_host``, and ``ansible_port``. If you are using a version of Ansible prior to 2.0, you should continue using the older style variables (``ansible_ssh_*``). These shorter variables are ignored, without warning, in older versions of Ansible.
|
||||
|
||||
You can also select the connection type and user on a per host basis:
|
||||
|
||||
::
|
||||
|
||||
[targets]
|
||||
|
||||
localhost ansible_connection=local
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue