mirror of
https://github.com/whekin/household-bot.git
synced 2026-03-31 14:04:04 +00:00
feat(infra): update terraform state backend and add missing runtime secrets
This commit is contained in:
@@ -70,6 +70,35 @@ variable "supabase_publishable_key_secret_id" {
|
||||
nullable = true
|
||||
}
|
||||
|
||||
variable "database_url_secret_id" {
|
||||
description = "Optional Secret Manager ID for DATABASE_URL"
|
||||
type = string
|
||||
default = null
|
||||
nullable = true
|
||||
}
|
||||
|
||||
variable "telegram_bot_token_secret_id" {
|
||||
description = "Optional Secret Manager ID for TELEGRAM_BOT_TOKEN"
|
||||
type = string
|
||||
default = null
|
||||
nullable = true
|
||||
}
|
||||
|
||||
variable "telegram_bot_username_secret_id" {
|
||||
description = "Optional Secret Manager ID for TELEGRAM_BOT_USERNAME"
|
||||
type = string
|
||||
default = null
|
||||
nullable = true
|
||||
}
|
||||
|
||||
variable "openai_api_key_secret_id" {
|
||||
description = "Optional Secret Manager ID for OPENAI_API_KEY"
|
||||
type = string
|
||||
default = null
|
||||
nullable = true
|
||||
}
|
||||
|
||||
|
||||
variable "scheduler_path" {
|
||||
description = "Reminder endpoint path on bot API"
|
||||
type = string
|
||||
|
||||
Reference in New Issue
Block a user