mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Unquote urls in YAML - system (#5796)
This commit is contained in:
parent
18d022d808
commit
eb54b80a92
1 changed files with 2 additions and 2 deletions
|
@ -99,7 +99,7 @@ EXAMPLES = '''
|
||||||
# Using github url as key source
|
# Using github url as key source
|
||||||
- authorized_key:
|
- authorized_key:
|
||||||
user: charlie
|
user: charlie
|
||||||
key: 'https://github.com/charlie.keys'
|
key: https://github.com/charlie.keys
|
||||||
|
|
||||||
# Using alternate directory locations:
|
# Using alternate directory locations:
|
||||||
- authorized_key:
|
- authorized_key:
|
||||||
|
@ -126,7 +126,7 @@ EXAMPLES = '''
|
||||||
# Using validate_certs:
|
# Using validate_certs:
|
||||||
- authorized_key:
|
- authorized_key:
|
||||||
user: charlie
|
user: charlie
|
||||||
key: 'https://github.com/user.keys'
|
key: https://github.com/user.keys
|
||||||
validate_certs: no
|
validate_certs: no
|
||||||
|
|
||||||
# Set up authorized_keys exclusively with one key
|
# Set up authorized_keys exclusively with one key
|
||||||
|
|
Loading…
Reference in a new issue