Adding option to brand across services where possible

This commit is contained in:
Ian Roddis
2026-03-23 14:54:16 -03:00
parent 6c914d5b82
commit 72f171e88f
20 changed files with 191 additions and 4 deletions
+16
View File
@@ -7,6 +7,22 @@
loop:
- "{{ wazuh_data_dir }}"
- "{{ wazuh_data_dir }}/config"
- "{{ wazuh_data_dir }}/dashboard-config"
- name: Deploy Wazuh dashboard branding config
ansible.builtin.template:
src: opensearch_dashboards.yml.j2
dest: "{{ wazuh_data_dir }}/dashboard-config/opensearch_dashboards.yml"
mode: '0644'
notify: restart wazuh
- name: Copy tenant logo to Wazuh dashboard assets
ansible.builtin.copy:
src: "{{ tenant_logo_local_path }}"
dest: "{{ wazuh_data_dir }}/dashboard-config/branding-logo.png"
mode: '0644'
when: tenant_logo_local_path | default('') != ''
notify: restart wazuh
- name: Set vm.max_map_count for Wazuh indexer (OpenSearch)
ansible.posix.sysctl: