I have the following definition in yaml file:
keepalived: cluster_name: "cluster.example.lan" cluster_ip: "192.168.1.10" cluster_nic: "eth0" haproxy: bind_address: %{hiera('keepalived::cluster_ip')}
And as a result, in bind_address , I have an empty string.
If I use %{hiera('keepalived')} , I have the whole hash, but I only need cluster_ip from this hash. How can I find cluster_ip ?
source share