Fix syntax highlighting (#53945)
* Fix syntax highlighting This fixes broken syntax highlighting for \' inside a single quoted string. * Update lib/ansible/plugins/lookup/aws_ssm.py Co-Authored-By: vlad-ro <vlad-ro@users.noreply.github.com>
This commit is contained in:
parent
2a8252ceb9
commit
e216aafc14
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ EXAMPLES = '''
|
|||
ignore_errors: true
|
||||
|
||||
- name: show fact default to "access failed" if we don't have access
|
||||
debug: msg="{{ "the secret was:" ~ temp_secret | default('couldn\'t access secret') }}"
|
||||
debug: msg="{{ 'the secret was:' ~ temp_secret | default('could not access secret') }}"
|
||||
|
||||
- name: return a dictionary of ssm parameters from a hierarchy path
|
||||
debug: msg="{{ lookup('aws_ssm', '/PATH/to/params', region='ap-southeast-2', bypath=true, recursive=true ) }}"
|
||||
|
|
Loading…
Reference in a new issue