Merge "Fix retrievement keyrings from files"

This commit is contained in:
Zuul 2023-06-20 12:31:03 +00:00 committed by Gerrit Code Review
commit 22a63c5918
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
{% set _keys = {} %}
{% for client in ceph_client_filtered_clients %}
{% set _ = _keys.update({
client: lookup('file', ceph_keyrings_dir ~ '/' ~ client['name'] ~ '.keyring')
client['name']: lookup('file', ceph_keyrings_dir ~ '/' ~ client['name'] ~ '.keyring')
})
%}
{% endfor %}