- Diun monitors Docker images - Automated updates for nginx, manual approval for gitea/postgres - Weekly cert renewal automation via cron - Health checks with automatic rollback on failure - AWS SES email notifications on update failures - Daily S3 backups + pre-update snapshots - Integration tests with Gitea Actions quality gate Deployment + optional PoC complete.
18 lines
425 B
HCL
18 lines
425 B
HCL
variable "aws_region" {
|
|
description = "AWS region for all resources"
|
|
type = string
|
|
default = "eu-central-1"
|
|
}
|
|
|
|
variable "project_name" {
|
|
description = "Project name for resource naming"
|
|
type = string
|
|
default = "qvest-task"
|
|
}
|
|
|
|
variable "alert_email" {
|
|
description = "Email address for system alerts and notifications"
|
|
type = string
|
|
default = "generic.admin.user@gmail.com"
|
|
}
|