I am trying to update a config file using the "File Enforce Content" in the Lines argument I have tried obtaining information about the node using ${rudder.node.hostname}
this never gets replaced on the actual node though and remains the same? I am actually after the IP address of the node as well as the host name but using this to test the technique is working since the docs mention it.
Lines Parameter
[Config]
IP=${rudder.node.ipaddress}
Name=${rudder.node.hostname}
Nodes file
[Config]
IP=${rudder.node.ipaddress}
Name=${rudder.node.hostname}
Expected
[Config]
IP=10.0.0.1
Name=node1
(Just as a side note I am struggling to locate a list in the web portal or online of available replacement variables so the ip address one is probably wrong)