ansible-base/inventory_template/host_vars/host.example.org.yml

34 lines
694 B
YAML
Raw Permalink Normal View History

2020-05-15 22:22:26 +02:00
# Enable auto reboot
2020-07-20 18:04:56 +02:00
auto_reboot: true
2020-05-15 22:22:26 +02:00
# Cron task scheduling for auto reboot
2020-07-20 18:04:56 +02:00
cron_reboot_minute: "50"
cron_reboot_hour: "0"
cron_reboot_day: "*"
cron_reboot_month: "*"
cron_reboot_weekday: "1"
2020-05-15 22:22:26 +02:00
# Set to true if you want to enable auto upgrade
2020-07-20 18:04:56 +02:00
auto_upgrade: true
# SSH port VM (default is 22 but you can change if needed)
ansible_port: 22
2020-05-15 22:22:26 +02:00
# Cron task scheduling for auto upgrade
2020-07-20 18:04:56 +02:00
cron_upgrade_minute: "25"
cron_upgrade_hour: "0"
cron_upgrade_day: "*"
cron_upgrade_month: "*"
cron_upgrade_weekday: "*"
2020-05-15 22:22:26 +02:00
# All authorized TCP ports
2020-07-20 18:04:56 +02:00
tcp_authorized_ports:
- '22'
2020-05-15 22:22:26 +02:00
# All incoming authorized IP (all ports and all protocols)
2020-07-20 18:04:56 +02:00
ip_authorized: []
# All authorized UDP ports
udp_authorized_ports: []