Adding option to brand across services where possible
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user