Phase 3+4 of default-deny ingress plan. Replaces the `protected = bool` (default
false → unprotected) variable in `modules/kubernetes/ingress_factory` with
`auth = string` enum (default "required" → fail-closed). Touches every
ingress_factory caller so the audit decision is recorded explicitly in code.
ingress_factory (Phase 3):
- `auth = "required"`: standard Authentik forward-auth (the legacy
`protected = true` semantic).
- `auth = "public"`: forward-auth via the new `authentik-forward-auth-public`
middleware → dedicated public outpost → guest auto-bind. Logged-in users
keep their real identity.
- `auth = "none"`: no Authentik middleware. For Anubis-fronted content, native
client APIs (Git, /v2/, WebDAV), webhook receivers, the Authentik outpost
itself.
- `effective_anti_ai` default flips ON only when `auth = "none"` (auth-gated
ingresses don't need anti-AI noise; the auth flow already discourages bots).
Audit pass (Phase 4) across 96 ingress_factory call sites:
- 49 explicit `protected = true` → `auth = "required"`
- 8 explicit `protected = false` → `auth = "none"` (5) or `auth = "public"` (3)
- 64 previously-default (no protected line) → `auth = "required"` ADDED, then
reviewed individually:
* 9 Anubis-fronted (blog, www, kms, travel, f1, cyberchef, jsoncrack,
homepage, wrongmove UI, privatebin) → `auth = "none"`
* 22 native-client / programmatic surfaces (Forgejo Git+/v2/, webhook
handler, claude-memory MCP, Nextcloud WebDAV, Matrix, Vault CLI/OIDC,
xray VPN, ntfy, woodpecker webhooks, n8n triggers, ntfy push, dawarich
location ingestion, immich frame kiosk, headscale CP, send anonymous
drops, rybbit beacon, vaultwarden API, Authentik UI itself + outposts) →
`auth = "none"`
* Remaining ~33 → `auth = "required"` confirmed (admin tools, internal
UIs, services without app-level auth)
- Smoke-test promotions to `auth = "public"`: fire-planner public UI,
k8s-portal API, insta2spotify callback.
Three call sites in wrapper modules (`stacks/freedify/factory/`,
`stacks/reverse-proxy/modules/reverse_proxy/`) keep their internal `protected`
bool — they translate to `auth` internally, out of scope for this rename.
Behavior change: previously-default ingresses now fail closed (require
Authentik login) unless explicitly flipped to `auth = "none"` or
`auth = "public"`. This is the audit goal — no more accidentally-unprotected
surfaces. Sites that were intentionally public (Anubis content, native APIs,
webhooks) are now explicitly recorded as `auth = "none"`.
Drive-by: `modules/create-vm/main.tf` picked up cosmetic alignment via
`terraform fmt -recursive` during the audit. Behavior-neutral.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
521 lines
14 KiB
HCL
521 lines
14 KiB
HCL
variable "tls_secret_name" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "image_version" {
|
|
type = string
|
|
default = "1.6.1"
|
|
}
|
|
variable "nfs_server" { type = string }
|
|
variable "redis_host" { type = string }
|
|
variable "postgresql_host" { type = string }
|
|
|
|
resource "kubernetes_namespace" "dawarich" {
|
|
metadata {
|
|
name = "dawarich"
|
|
labels = {
|
|
"istio-injection" : "disabled"
|
|
tier = local.tiers.edge
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_manifest" "external_secret" {
|
|
manifest = {
|
|
apiVersion = "external-secrets.io/v1beta1"
|
|
kind = "ExternalSecret"
|
|
metadata = {
|
|
name = "dawarich-secrets"
|
|
namespace = "dawarich"
|
|
}
|
|
spec = {
|
|
refreshInterval = "15m"
|
|
secretStoreRef = {
|
|
name = "vault-kv"
|
|
kind = "ClusterSecretStore"
|
|
}
|
|
target = {
|
|
name = "dawarich-secrets"
|
|
}
|
|
dataFrom = [{
|
|
extract = {
|
|
key = "dawarich"
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
depends_on = [kubernetes_namespace.dawarich]
|
|
}
|
|
|
|
module "tls_secret" {
|
|
source = "../../modules/kubernetes/setup_tls_secret"
|
|
namespace = kubernetes_namespace.dawarich.metadata[0].name
|
|
tls_secret_name = var.tls_secret_name
|
|
}
|
|
|
|
resource "kubernetes_deployment" "dawarich" {
|
|
metadata {
|
|
name = "dawarich"
|
|
namespace = kubernetes_namespace.dawarich.metadata[0].name
|
|
labels = {
|
|
app = "dawarich"
|
|
tier = local.tiers.edge
|
|
}
|
|
annotations = {
|
|
"reloader.stakater.com/search" = "true"
|
|
}
|
|
}
|
|
spec {
|
|
replicas = 1
|
|
strategy {
|
|
type = "Recreate"
|
|
}
|
|
selector {
|
|
match_labels = {
|
|
app = "dawarich"
|
|
}
|
|
}
|
|
template {
|
|
metadata {
|
|
labels = {
|
|
app = "dawarich"
|
|
}
|
|
annotations = {
|
|
"diun.enable" = "true"
|
|
"diun.include_tags" = "^v?\\d+\\.\\d+\\.\\d+$"
|
|
"dependency.kyverno.io/wait-for" = "postgresql.dbaas:5432,redis-master.redis:6379"
|
|
}
|
|
}
|
|
spec {
|
|
termination_grace_period_seconds = 60
|
|
|
|
container {
|
|
image = "freikin/dawarich:${var.image_version}"
|
|
name = "dawarich"
|
|
port {
|
|
name = "http"
|
|
container_port = 3000
|
|
}
|
|
port {
|
|
name = "prometheus"
|
|
container_port = 9394
|
|
}
|
|
command = ["web-entrypoint.sh"]
|
|
args = ["bin/rails", "server", "-p", "3000", "-b", "::"]
|
|
env {
|
|
name = "REDIS_URL"
|
|
value = "redis://${var.redis_host}:6379"
|
|
}
|
|
env {
|
|
name = "DATABASE_HOST"
|
|
value = var.postgresql_host
|
|
}
|
|
env {
|
|
name = "DATABASE_USERNAME"
|
|
value = "dawarich"
|
|
}
|
|
env {
|
|
name = "DATABASE_PASSWORD"
|
|
value_from {
|
|
secret_key_ref {
|
|
name = "dawarich-secrets"
|
|
key = "db_password"
|
|
}
|
|
}
|
|
}
|
|
env {
|
|
name = "DATABASE_NAME"
|
|
value = "dawarich"
|
|
}
|
|
env {
|
|
name = "MIN_MINUTES_SPENT_IN_CITY"
|
|
value = "60"
|
|
}
|
|
env {
|
|
name = "TIME_ZONE"
|
|
value = "Europe/London"
|
|
}
|
|
env {
|
|
name = "DISTANCE_UNIT"
|
|
value = "km"
|
|
}
|
|
env {
|
|
name = "ENABLE_TELEMETRY"
|
|
value = "true"
|
|
}
|
|
env {
|
|
name = "APPLICATION_HOSTS"
|
|
value = "dawarich.viktorbarzin.me"
|
|
}
|
|
# env {
|
|
# name = "PROMETHEUS_EXPORTER_ENABLED"
|
|
# value = "true"
|
|
# }
|
|
# env {
|
|
# name = "PROMETHEUS_EXPORTER_PORT"
|
|
# value = "9394"
|
|
# }
|
|
# env {
|
|
# name = "PROMETHEUS_EXPORTER_HOST"
|
|
# value = "0.0.0.0"
|
|
# }
|
|
env {
|
|
name = "RAILS_ENV"
|
|
value = "production"
|
|
}
|
|
env {
|
|
name = "SECRET_KEY_BASE"
|
|
value_from {
|
|
secret_key_ref {
|
|
name = "dawarich-secrets"
|
|
key = "secret_key_base"
|
|
}
|
|
}
|
|
}
|
|
env {
|
|
name = "RAILS_LOG_TO_STDOUT"
|
|
value = "true"
|
|
}
|
|
env {
|
|
name = "SELF_HOSTED"
|
|
value = "true"
|
|
}
|
|
# env {
|
|
# name = "PHOTON_API_HOST"
|
|
# value = "photon.dawarich"
|
|
# }
|
|
|
|
|
|
# volume_mount {
|
|
# name = "watched"
|
|
# mount_path = "/var/app/tmp/imports/watched"
|
|
# }
|
|
resources {
|
|
requests = {
|
|
cpu = "15m"
|
|
memory = "896Mi"
|
|
}
|
|
limits = {
|
|
memory = "896Mi"
|
|
}
|
|
}
|
|
}
|
|
container {
|
|
image = "freikin/dawarich:${var.image_version}"
|
|
name = "dawarich-sidekiq"
|
|
command = ["sidekiq-entrypoint.sh"]
|
|
args = ["bundle exec sidekiq"]
|
|
env {
|
|
name = "REDIS_URL"
|
|
value = "redis://${var.redis_host}:6379"
|
|
}
|
|
env {
|
|
name = "DATABASE_HOST"
|
|
value = var.postgresql_host
|
|
}
|
|
env {
|
|
name = "DATABASE_USERNAME"
|
|
value = "dawarich"
|
|
}
|
|
env {
|
|
name = "DATABASE_PASSWORD"
|
|
value_from {
|
|
secret_key_ref {
|
|
name = "dawarich-secrets"
|
|
key = "db_password"
|
|
}
|
|
}
|
|
}
|
|
env {
|
|
name = "DATABASE_NAME"
|
|
value = "dawarich"
|
|
}
|
|
env {
|
|
name = "MIN_MINUTES_SPENT_IN_CITY"
|
|
value = "60"
|
|
}
|
|
env {
|
|
name = "TIME_ZONE"
|
|
value = "Europe/London"
|
|
}
|
|
env {
|
|
name = "DISTANCE_UNIT"
|
|
value = "km"
|
|
}
|
|
env {
|
|
name = "BACKGROUND_PROCESSING_CONCURRENCY"
|
|
value = "2"
|
|
}
|
|
env {
|
|
name = "ENABLE_TELEMETRY"
|
|
value = "true"
|
|
}
|
|
env {
|
|
name = "APPLICATION_HOSTS"
|
|
value = "dawarich.viktorbarzin.me"
|
|
}
|
|
# Prometheus exporter disabled until a standalone `prometheus_exporter`
|
|
# server sidecar is added — see follow-up bead. The client middleware
|
|
# pushes over TCP to PROMETHEUS_EXPORTER_HOST:PORT, it does not start
|
|
# a listener itself. Keeping ENABLED=false silences the reconnect
|
|
# log spam (~2/sec) from PrometheusExporter::Client.
|
|
env {
|
|
name = "PROMETHEUS_EXPORTER_ENABLED"
|
|
value = "false"
|
|
}
|
|
env {
|
|
name = "RAILS_ENV"
|
|
value = "production"
|
|
}
|
|
env {
|
|
name = "SECRET_KEY_BASE"
|
|
value_from {
|
|
secret_key_ref {
|
|
name = "dawarich-secrets"
|
|
key = "secret_key_base"
|
|
}
|
|
}
|
|
}
|
|
env {
|
|
name = "RAILS_LOG_TO_STDOUT"
|
|
value = "true"
|
|
}
|
|
env {
|
|
name = "SELF_HOSTED"
|
|
value = "true"
|
|
}
|
|
env {
|
|
name = "GEOAPIFY_API_KEY"
|
|
value_from {
|
|
secret_key_ref {
|
|
name = "dawarich-secrets"
|
|
key = "geoapify_api_key"
|
|
}
|
|
}
|
|
}
|
|
resources {
|
|
requests = {
|
|
cpu = "50m"
|
|
memory = "768Mi"
|
|
}
|
|
limits = {
|
|
memory = "1Gi"
|
|
}
|
|
}
|
|
liveness_probe {
|
|
exec {
|
|
command = ["/bin/sh", "-c", "pgrep -f 'bundle exec sidekiq' >/dev/null"]
|
|
}
|
|
initial_delay_seconds = 90
|
|
period_seconds = 30
|
|
timeout_seconds = 5
|
|
failure_threshold = 3
|
|
}
|
|
readiness_probe {
|
|
exec {
|
|
command = ["/bin/sh", "-c", "pgrep -f 'bundle exec sidekiq' >/dev/null"]
|
|
}
|
|
initial_delay_seconds = 30
|
|
period_seconds = 15
|
|
timeout_seconds = 5
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
lifecycle {
|
|
ignore_changes = [spec[0].template[0].spec[0].dns_config] # KYVERNO_LIFECYCLE_V1
|
|
}
|
|
}
|
|
|
|
|
|
# resource "kubernetes_deployment" "photon" {
|
|
# metadata {
|
|
# name = "photon"
|
|
# namespace = kubernetes_namespace.dawarich.metadata[0].name
|
|
# labels = {
|
|
# app = "photon"
|
|
# }
|
|
# }
|
|
# spec {
|
|
# replicas = 1
|
|
# strategy {
|
|
# type = "Recreate"
|
|
# }
|
|
# selector {
|
|
# match_labels = {
|
|
# app = "photon"
|
|
# }
|
|
# }
|
|
# template {
|
|
# metadata {
|
|
# labels = {
|
|
# app = "photon"
|
|
# }
|
|
# }
|
|
# spec {
|
|
|
|
# container {
|
|
# image = "rtuszik/photon-docker:latest"
|
|
# name = "photon"
|
|
# port {
|
|
# name = "tcp"
|
|
# container_port = 2322
|
|
# }
|
|
# env {
|
|
# name = "COUNTRY_CODE"
|
|
# value = "bg"
|
|
# }
|
|
|
|
# volume_mount {
|
|
# name = "data"
|
|
# mount_path = "/photon/photon_data"
|
|
# }
|
|
# }
|
|
# volume {
|
|
# name = "data"
|
|
# nfs {
|
|
# path = "/mnt/main/photon"
|
|
# server = var.nfs_server
|
|
# }
|
|
# }
|
|
# }
|
|
|
|
# }
|
|
# }
|
|
# }
|
|
|
|
|
|
|
|
resource "kubernetes_service" "dawarich" {
|
|
metadata {
|
|
name = "dawarich"
|
|
namespace = kubernetes_namespace.dawarich.metadata[0].name
|
|
labels = {
|
|
"app" = "dawarich"
|
|
}
|
|
}
|
|
|
|
spec {
|
|
selector = {
|
|
app = "dawarich"
|
|
}
|
|
port {
|
|
name = "http"
|
|
port = 80
|
|
target_port = 3000
|
|
protocol = "TCP"
|
|
}
|
|
}
|
|
}
|
|
|
|
# resource "kubernetes_service" "photon" {
|
|
# metadata {
|
|
# name = "photon"
|
|
# namespace = kubernetes_namespace.dawarich.metadata[0].name
|
|
# labels = {
|
|
# "app" = "photon"
|
|
# }
|
|
# }
|
|
|
|
# spec {
|
|
# selector = {
|
|
# app = "photon"
|
|
# }
|
|
# port {
|
|
# name = "http"
|
|
# port = 2322
|
|
# target_port = 2322
|
|
# protocol = "TCP"
|
|
# }
|
|
# }
|
|
# }
|
|
module "ingress" {
|
|
source = "../../modules/kubernetes/ingress_factory"
|
|
# owntracks bridge hook posts to /api/v1/owntracks/points?api_key=... from
|
|
# outside the cluster; mobile location apps also POST programmatically with
|
|
# an api_key. Forward-auth would 302 these clients into a login they can't
|
|
# complete. Dawarich enforces api_key at app layer.
|
|
auth = "none"
|
|
dns_type = "proxied"
|
|
namespace = kubernetes_namespace.dawarich.metadata[0].name
|
|
name = "dawarich"
|
|
tls_secret_name = var.tls_secret_name
|
|
extra_annotations = {
|
|
"gethomepage.dev/enabled" = "true"
|
|
"gethomepage.dev/name" = "Dawarich"
|
|
"gethomepage.dev/description" = "Location history"
|
|
"gethomepage.dev/icon" = "dawarich.png"
|
|
"gethomepage.dev/group" = "Smart Home"
|
|
"gethomepage.dev/pod-selector" = ""
|
|
}
|
|
}
|
|
|
|
# Paired with DawarichIngestionStale alert in monitoring/prometheus_chart_values.tpl.
|
|
resource "kubernetes_cron_job_v1" "ingestion_freshness_monitor" {
|
|
metadata {
|
|
name = "ingestion-freshness-monitor"
|
|
namespace = kubernetes_namespace.dawarich.metadata[0].name
|
|
}
|
|
spec {
|
|
concurrency_policy = "Forbid"
|
|
failed_jobs_history_limit = 3
|
|
schedule = "30 6 * * *"
|
|
starting_deadline_seconds = 300
|
|
successful_jobs_history_limit = 1
|
|
job_template {
|
|
metadata {}
|
|
spec {
|
|
backoff_limit = 2
|
|
ttl_seconds_after_finished = 3600
|
|
template {
|
|
metadata {}
|
|
spec {
|
|
restart_policy = "OnFailure"
|
|
container {
|
|
name = "ingestion-freshness-monitor"
|
|
image = "docker.io/library/postgres:16-alpine"
|
|
env {
|
|
name = "PGPASSWORD"
|
|
value_from {
|
|
secret_key_ref {
|
|
name = "dawarich-secrets"
|
|
key = "db_password"
|
|
}
|
|
}
|
|
}
|
|
command = ["/bin/sh", "-c", <<-EOT
|
|
set -eu
|
|
apk add --no-cache curl >/dev/null 2>&1 || true
|
|
|
|
TS=$(PGPASSWORD=$PGPASSWORD psql -h ${var.postgresql_host} -U dawarich -d dawarich -t -A -c \
|
|
"SELECT COALESCE(EXTRACT(epoch FROM MAX(created_at))::bigint, 0) FROM points WHERE user_id = 1;")
|
|
NOW=$(date +%s)
|
|
|
|
if [ -z "$TS" ] || [ "$TS" = "0" ]; then
|
|
echo "ERROR: no points found for user_id=1"
|
|
exit 1
|
|
fi
|
|
|
|
AGE_H=$(( (NOW - TS) / 3600 ))
|
|
echo "last_point_ts=$TS now=$NOW age_hours=$AGE_H"
|
|
|
|
curl -sf --data-binary @- "http://prometheus-prometheus-pushgateway.monitoring:9091/metrics/job/dawarich-ingestion-freshness/user/viktor" <<METRICS
|
|
# TYPE dawarich_last_point_ingested_timestamp gauge
|
|
dawarich_last_point_ingested_timestamp $TS
|
|
# TYPE dawarich_ingestion_monitor_last_push_timestamp gauge
|
|
dawarich_ingestion_monitor_last_push_timestamp $NOW
|
|
METRICS
|
|
EOT
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
lifecycle {
|
|
ignore_changes = [spec[0].job_template[0].spec[0].template[0].spec[0].dns_config] # KYVERNO_LIFECYCLE_V1
|
|
}
|
|
}
|