-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
  • 244,070
  • 43
  • 506
  • 972
Ravi
  • 9
  • 2

1 Answers1

2

Look's to like a syntax error. This line

      Authorization : "----"

should be:

      Authorization: "----"
Henrik Pingel
  • 9,380
  • 2
  • 28
  • 39