Update EXAMPLES section in modules (#27)

Update EXAMPLES section in modules to use FQCN

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde
2020-05-21 22:24:20 +05:30
committed by GitHub
parent 147caed10d
commit d9e0140b66
9 changed files with 58 additions and 58 deletions

View File

@@ -86,19 +86,19 @@ author: Ansible Core Team
EXAMPLES = r'''
- name: Set authorized key taken from file
authorized_key:
ansible.posix.authorized_key:
user: charlie
state: present
key: "{{ lookup('file', '/home/charlie/.ssh/id_rsa.pub') }}"
- name: Set authorized keys taken from url
authorized_key:
ansible.posix.authorized_key:
user: charlie
state: present
key: https://github.com/charlie.keys
- name: Set authorized key in alternate location
authorized_key:
ansible.posix.authorized_key:
user: charlie
state: present
key: "{{ lookup('file', '/home/charlie/.ssh/id_rsa.pub') }}"
@@ -106,7 +106,7 @@ EXAMPLES = r'''
manage_dir: False
- name: Set up multiple authorized keys
authorized_key:
ansible.posix.authorized_key:
user: deploy
state: present
key: '{{ item }}'
@@ -115,28 +115,28 @@ EXAMPLES = r'''
- public_keys/doe-john
- name: Set authorized key defining key options
authorized_key:
ansible.posix.authorized_key:
user: charlie
state: present
key: "{{ lookup('file', '/home/charlie/.ssh/id_rsa.pub') }}"
key_options: 'no-port-forwarding,from="10.0.1.1"'
- name: Set authorized key without validating the TLS/SSL certificates
authorized_key:
ansible.posix.authorized_key:
user: charlie
state: present
key: https://github.com/user.keys
validate_certs: False
- name: Set authorized key, removing all the authorized keys already set
authorized_key:
ansible.posix.authorized_key:
user: root
key: "{{ lookup('file', 'public_keys/doe-jane') }}"
state: present
exclusive: True
- name: Set authorized key for user ubuntu copying it from current user
authorized_key:
ansible.posix.authorized_key:
user: ubuntu
state: present
key: "{{ lookup('file', lookup('env','HOME') + '/.ssh/id_rsa.pub') }}"