We have (due to some legacy issues) configuration files which we would like to keep in our consul KV store which we are using for configuration management. some of these configuration files have values which would depend on other values in the KV store, which would be best not to repeat. Is there a way to make these KV values a template which is then executed. (Or perhaps a better solution to our situation)
as a toy example, I have a k:v
file-conf: host = {{key “config/host”}}
host: “my.address”
what template would render file-conf with the value of host injected?