Files
household-bot/infra/terraform/terraform.tfvars.example
whekin fcdd0f2aaf feat(bot): add /dashboard command and MINI_APP_URL config
- Add /dashboard command to BotFather registration alongside /app
- Add new MINI_APP_URL env var for dashboard URL (separate from CORS origins)
- Pass MINI_APP_URL and BOT_API_URL in CD workflow
- Update Terraform with new variable for future infrastructure deployments
2026-03-17 02:17:11 +04:00

40 lines
1.4 KiB
Plaintext

project_id = "my-gcp-project"
region = "europe-west1"
environment = "dev"
service_prefix = "household"
artifact_repository_id = "household-bot"
bot_api_image = "europe-west1-docker.pkg.dev/my-gcp-project/household-bot/bot:latest"
mini_app_image = "europe-west1-docker.pkg.dev/my-gcp-project/household-bot/miniapp:latest"
database_url_secret_id = "database-url"
telegram_bot_token_secret_id = "telegram-bot-token"
openai_api_key_secret_id = "openai-api-key"
bot_purchase_parser_model = "gpt-4o-mini"
bot_assistant_model = "gpt-4o-mini"
bot_assistant_router_model = "gpt-5-nano"
bot_assistant_timeout_ms = 20000
bot_assistant_memory_max_turns = 12
bot_assistant_rate_limit_burst = 5
bot_assistant_rate_limit_burst_window_ms = 60000
bot_assistant_rate_limit_rolling = 50
bot_assistant_rate_limit_rolling_window_ms = 86400000
bot_mini_app_url = "https://household-dev-mini-app-abc123-ew.a.run.app"
bot_mini_app_allowed_origins = [
"https://household-dev-mini-app-abc123-ew.a.run.app"
]
alert_notification_emails = [
"alerts@example.com"
]
scheduler_utilities_cron = "0 9 * * *"
scheduler_rent_warning_cron = "0 9 * * *"
scheduler_rent_due_cron = "0 9 * * *"
scheduler_timezone = "Asia/Tbilisi"
scheduler_paused = true
scheduler_dry_run = true
create_workload_identity = true
github_repository = "whekin/household-bot"