-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.yml
34 lines (30 loc) · 1.22 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Defaults variables for role zabbix-agent
# Do we want to have zabbix agent installed and monitored by proxy/server ?
zabbix_monitoring: True
# Which server and ip should we connect to and allow check from (iptables)
zabbix_server: localhost
zabbix_server_ip: 127.0.0.1
# TLS/PSK settings to encrypt between agent and proxy/server
zabbix_agent_tls: False
zabbix_agent_tls_psk: # gen with `openssl rand -hex 32` and also known by zabbix server
zabbix_agent_tls_psk_identity: # Whatever makes sense to you and known by zabbix server
# Zabbix host macros we want to control through ansible
# This is just a list of zabbix macro name and value to update
# example:
# zabbix_host_macros:
# - name: foo
# value: 5
# Empty list by default so nothing to add/modify
zabbix_host_macros: []
# Do we want to automatically create zabbix/ansible facts for geoip location ?
zabbix_agent_geoip: False
# If so we'll distribute template with ipgeolocation api key
zabbix_agent_geoip_apikey: Create-one-on-ipgeolocation.io
# What about default values if we can't query ipgeolocation.io
zabbix_agent_geoip_defaults:
latitude: '35'
longitude: '-78'
country: USA
state: North Carolina
city: Raleigh
continent: North America