Concatenate a complex string in Ansible
Constructing a long, complex string in Ansible can be achieved quite easily utilising Python string subsitution syntax.
Suppose you have the following variables:
app_protocol: http
app_host: 12.34.56.78
app_port: 8080
app_path: api/v2/testing
You could construct a string with all the component...