Is it possible to use environment variables in Grafana v9.1.3 when provisioning contact points? Per the example below I’m using this environment variable ${GF_CONTACTPOINT_CHATID} to create a contact point. The variable is not being substituted into the configuration on starting Grafana. When I browse to the UI to check the chat ID I do not see the integer value but see the text ‘${GF_CONTACTPOINT_CHATID}’.
contactPoints:
- orgId: 1
name: telegram-contact
receivers:
- uid: random-uid
type: telegram
settings:
bottoken: ${GF_CONTACTPOINT_BOTTOKEN}
chatid: ${GF_CONTACTPOINT_CHATID}