25 lines
785 B
HCL
25 lines
785 B
HCL
# ── Серверы ───────────────────────────────────────────────────────────────────
|
|
|
|
resource "twc_server" "main" {
|
|
name = "main"
|
|
comment = "Основной: Traefik, Forgejo, Plane, Vaultwarden, Outline, n8n, CI/CD"
|
|
os_id = 99
|
|
preset_id = 2453
|
|
|
|
lifecycle {
|
|
prevent_destroy = true
|
|
ignore_changes = [is_root_password_required]
|
|
}
|
|
}
|
|
|
|
resource "twc_server" "tools" {
|
|
name = "tools"
|
|
comment = "Мониторинг: Grafana, Prometheus, Loki, AlertManager, Uptime Kuma"
|
|
os_id = 99
|
|
preset_id = 2449
|
|
|
|
lifecycle {
|
|
prevent_destroy = true
|
|
ignore_changes = [is_root_password_required]
|
|
}
|
|
}
|