I use Ansible to install and configure Splunk Universal Forwarder on multiple servers. However, it's difficult to maintain a link to the product, the links are not consistent and contain unpredictable data, such as the git commit for the version. Is there a link that would allow me to generate a link dynamically only knowing non-changing properties of the download or predictable values, such as version, platform, package type, etc. For example: "https://download.splunk.com/products/universalforwarder/releases/{{ splunk_version }}/linux/splunkforwarder-{{ splunk_version }}-{{ splunk_os }}-{{ splunk_arch }}.{{ splunk_pkg }}" or to get the latest version something simple like: https://download.splunk.com/products/universalforwarder/releases/latest
... View more