Fix test playbook execution when secret or key contain '$'

Ansible shell task behaves as expected and would interpret '$'. Single-quiting
it fixes that.
This commit is contained in:
Gregor 2021-06-15 21:06:05 +02:00
parent 8c1f64c83a
commit 3e1aaef37e
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@
mc alias set \
{{ mc_alias_name }} \
http://{{ minio_server_ip }}{{ minio_layouts.server1.server_addr }} \
{{ minio_access_key }} \
{{ minio_secret_key }}
'{{ minio_access_key }}' \
'{{ minio_secret_key }}'
- name: removing unneeded default aliases
shell: >-