add terraform

This commit is contained in:
David Chen
2026-03-07 19:26:47 +08:00
committed by GitHub
parent 61a021093c
commit 5bdf2fe6b8
6 changed files with 170 additions and 9 deletions

19
terraform/variables.tf Normal file
View File

@@ -0,0 +1,19 @@
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
}