Ich suche Werte in einer INI-Datei mit Ansible-Lookup-Funktion. Hier ist das Beispiel in der Dokumentation:Ansible INI-Lookup
- debug: msg="User in integration is {{ lookup('ini', 'user section=integration file=users.ini') }}"
Und hier ist meine Aufgabe:
- set_fact: aws_access_var = "{{ lookup('ini', 'AWS_ACCESS_KEY_ID section=Credentials file=/etc/boto.cfg') }}"
Sie sehen identisch in Syntax, aber meine Aufgabe versagt:
fatal: [localhost]: FAILED! => {"failed": true, "msg": "template error while templating string: unexpected char u\"'\" at 18. String: \"{{ lookup('ini', 'AWS_ACCESS_KEY_ID section"}
Jede Idee, was mit ihm los?