How to provide headers in modules in blackbox.yml.
module:
prober: http
http:
headers:
Authorization : "----"
This returns in error parsing config file:yaml: unmarshal errors
How to provide headers in modules in blackbox.yml.
module:
prober: http
http:
headers:
Authorization : "----"
This returns in error parsing config file:yaml: unmarshal errors
Look's to like a syntax error. This line
Authorization : "----"
should be:
Authorization: "----"