### Feature Request Grafana v12 is now released and supports custom headers in webhooks. PR: https://github.com/grafana/grafana/pull/103818 Feature request to add `headers` to `webhook` in `grafana_contact_point ` resource. Example: ``` resource "grafana_contact_point" "contact_point_b9665ac0e4fed046" { name = "MyWebHook" webhook { url = "https://webhook_address" headers = { x-sn-apikey = "apikey" } } } ```