ansible/roles/keepalived/templates/keepalived.conf
Salt 059802d326 Move keepalived templates where they belong
Surprised that worked at all, actually
2021-03-24 17:35:31 -05:00

15 lines
376 B
Plaintext

vrrp_instance {{ keepalived_vrrp_instance_name }} {
state {{ keepalived_state }}
interface {{ keepalived_interface }}
virtual_router_id {{ keepailved_virtual_router_id }}
priority {{ keepalived_priority }}
advert_int {{ keepalived_advert_int }}
authentication {
auth_type PASS
auth_pass {{ keepalived_auth_pass }}
}
virtual_ipaddress {
{{ keepalived_vip }}
}
}