-1

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

Michael Hampton
  • 237,123
  • 42
  • 477
  • 940
Ravi
  • 9
  • 1

1 Answers1

2

Look's to like a syntax error. This line

      Authorization : "----"

should be:

      Authorization: "----"
Henrik Pingel
  • 8,676
  • 2
  • 24
  • 38