20 lines
299 B
HCL
20 lines
299 B
HCL
variable "grafana_url" {
|
|
type = string
|
|
default = "http://localhost:3000"
|
|
}
|
|
|
|
variable "grafana_auth" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "telegram_bot_token" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "telegram_chat_id" {
|
|
type = string
|
|
sensitive = true
|
|
}
|