-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Hello,
I am an ansible beginner. But I used you role with success from months, but today it failed. And I definitly does not understand why it worked before.
Look at the default/main.yml
openbao_config: > {
"cluster_name": "{{ openbao_cluster_name }}",
"ui": "{{ openbao_enable_ui }}",
...
"path": "/openbao/file" , } }, "telemetry": { "prometheus_retention_time": "30s", "disable_hostname": true } }
openbao_config is a string (and some json comma mistake inside listener: section and raft:
And you use it that way: BAO_LOCAL_CONFIG: "{{ openbao_config | to_json }}"
But it is not a json, it is a string. That is why my new local.conf file give me a string of json. Which one is not understand by openbao.
Do you understand what's happen to make it works before ?