1
1
ansible_vagrant/templates/zabbix_agentd.conf.j2
2024-04-17 23:04:45 +02:00

20 lines
630 B
Django/Jinja

################################################################################
{{ ansible_managed | comment }}
################################################################################
PidFile=/run/zabbix/zabbix_agentd.pid
LogFile=/var/log/zabbix/zabbix_agentd.log
LogFileSize={{ ZBXLOGFILESIZE }}
Server={{ ZBXSERVER }}
ListenPort={{ ZBXAGENTPORT }}
ListenIP={{ ZBXLISTENIP }}
Hostname={{ inventory_hostname_short }}
TLSConnect=psk
TLSAccept=psk
TLSPSKFile=/etc/zabbix/zabbix.psk
TLSPSKIdentity={{ inventory_hostname_short }}
{% if REMOTECOMMANDS is defined %}
EnableRemoteCommands=1
AllowKey=system.run[*]
{% endif %}