feat: initial commit
This commit is contained in:
commit
29bec6f965
17 changed files with 343 additions and 0 deletions
21
tasks/config.yaml
Normal file
21
tasks/config.yaml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
|
||||
# configure psk
|
||||
- name: "configure psk"
|
||||
ansible.builtin.template:
|
||||
src: "templates/zabbix/zabbix_proxy.psk.j2"
|
||||
dest: "/etc/zabbix/zabbix_proxy.psk"
|
||||
owner: "zabbix"
|
||||
group: "zabbix"
|
||||
mode: "0640"
|
||||
notify: "restart zabbix-proxy"
|
||||
|
||||
# config proxy
|
||||
- name: "configure zabbix-proxy"
|
||||
ansible.builtin.template:
|
||||
src: "templates/zabbix/zabbix_proxy.conf.j2"
|
||||
dest: "/etc/zabbix/zabbix_proxy.conf"
|
||||
owner: "root"
|
||||
group: "root"
|
||||
mode: "0664"
|
||||
notify: "restart zabbix-proxy"
|
||||
Loading…
Add table
Add a link
Reference in a new issue