Skip to content

feat: support control of enabling the user interface #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions roles/openbao/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Role variables
* `openbao_write_keys_file`: Whether to write the root token and unseal keys to a file. Default `false`
* `openbao_write_keys_file_host`: Host on which to write root token and unseal keys. Default `localhost`
* `openbao_write_keys_file_path`: Path of file to write root token and unseal keys. Default `bao-keys.json`
* `openbao_enable_ui`: Whether to enable user interface that could be accessed from the `openbao_api_addr`. Default `false`

Root and unseal keys
--------------------
Expand Down
4 changes: 3 additions & 1 deletion roles/openbao/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ openbao_tls_cert: ""

openbao_config_dir: ""

openbao_enable_ui: false

openbao_config: >
{
"cluster_name": "{{ openbao_cluster_name }}",
"ui": false,
"ui": "{{ openbao_enable_ui }}",
"api_addr": "{{ openbao_api_addr }}",
"cluster_addr": "http://127.0.0.1:8201",
"listener": [{
Expand Down
Loading