From 9f328464266ae30e9684c74757cd6fabe6df1e28 Mon Sep 17 00:00:00 2001 From: Francois Andrieu Date: Mon, 14 Aug 2023 20:22:39 +0200 Subject: [PATCH] zabbix_server: install idp cert --- roles/zabbix/zabbix_server/tasks/install.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/roles/zabbix/zabbix_server/tasks/install.yml b/roles/zabbix/zabbix_server/tasks/install.yml index 2aa34ecb2c..4f6099ac44 100644 --- a/roles/zabbix/zabbix_server/tasks/install.yml +++ b/roles/zabbix/zabbix_server/tasks/install.yml @@ -64,6 +64,16 @@ tags: - zabbix-configuration +- name: Install IDP certificate + ansible.builtin.copy: + src: "{{ private }}/files/saml2/{{ env }}/keys/idp.crt" + dest: /usr/share/zabbix/conf/certs/idp.crt + mode: 0644 + owner: nginx + group: nginx + tags: + - zabbix-configuration + - name: Configure nginx nginx.conf ansible.builtin.template: src: nginx.conf.j2