Fix argument name in example of documentation (#64891)
##### SUMMARY The second example of the documentation uses an argument "hostname" that does not exist in this module. It should be replaced by argument "name" ##### ISSUE TYPE - Docs Pull Request +label: docsite_pr
This commit is contained in:
parent
8301ad47c3
commit
cf4882e0c0
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ EXAMPLES = '''
|
||||||
|
|
||||||
- name: Another way to call known_hosts
|
- name: Another way to call known_hosts
|
||||||
known_hosts:
|
known_hosts:
|
||||||
hostname: host1.example.com # or 10.9.8.77
|
name: host1.example.com # or 10.9.8.77
|
||||||
key: host1.example.com,10.9.8.77 ssh-rsa ASDeararAIUHI324324 # some key gibberish
|
key: host1.example.com,10.9.8.77 ssh-rsa ASDeararAIUHI324324 # some key gibberish
|
||||||
path: /etc/ssh/ssh_known_hosts
|
path: /etc/ssh/ssh_known_hosts
|
||||||
state: present
|
state: present
|
||||||
|
|
Loading…
Reference in a new issue