Skip to main content

Authentik on Google Cloud Run

Authentik on Google Cloud Run

authentik (goauthentik.io) is an open-source (MIT, open-core) identity provider: single sign-on via OIDC and SAML, LDAP and SCIM, multi-factor authentication, and proxy authentication — a self-hosted alternative to Okta, Auth0, and Keycloak. This module deploys authentik on Cloud Run v2 on top of the App_CloudRun foundation, which provisions and manages the shared Google Cloud infrastructure.

This guide focuses on the cloud services authentik uses and how to explore and operate them from the Google Cloud Console and the command line. For the mechanics common to every Cloud Run application — service identity, ingress and load balancing, scaling and concurrency, CI/CD, Cloud Armor, IAP, Binary Authorization, VPC Service Controls, backups, and the deployment lifecycle — refer to the App_CloudRun foundation guide rather than repeating them here.


1. Overview

authentik runs as a Python/Django container on Cloud Run v2, with its background worker (ak worker) co-located in the same container. The deployment wires together a focused set of Google Cloud services:

CapabilityGoogle Cloud serviceNotes
ComputeCloud Run v2Server + co-located worker, 2 vCPU / 2 GiB by default, always-on CPU, min 1 instance
DatabaseCloud SQL for PostgreSQL 15Required — authentik needs PostgreSQL ≥ 14; MySQL is blocked
Cache & queueNone — no Redisauthentik ≥ 2025.10 moved cache, sessions, task queue, and the WebSocket channel layer into PostgreSQL
Media storageCloud Storage (GCS Fuse)Bucket mounted at /media for uploaded icons and flow backgrounds
SecretsSecret ManagerStable AUTHENTIK_SECRET_KEY, akadmin bootstrap password, database password
ImageArtifact Registry + Cloud BuildThin custom build FROM ghcr.io/goauthentik/server (cloud entrypoint + worker launcher)
IngressCloud Run URL / Cloud Load BalancingDefault run.app URL; optional external HTTPS LB + custom domain

Sensible defaults worth knowing up front:

  • PostgreSQL 15 is mandatory and is the only datastore. No Redis, no search backend — sessions, cache, and the task queue all live in Cloud SQL.
  • The worker is co-located. The container entrypoint starts ak worker in the background next to the server (the same pattern as Chatwoot's Sidekiq worker). This is why cpu_always_allocated = true and min_instance_count = 1 are the defaults: scheduled tasks, outpost sync, and the Postgres-backed queue must keep processing between requests, outposts hold a WebSocket to the server, and login latency matters for an IdP. The variable documents the lab/demo flip-back (false + min_instance_count = 0).
  • max_instance_count = 5. authentik is stateless across instances — all state is in PostgreSQL — so multiple instances (each with its own worker) are safe.
  • AUTHENTIK_SECRET_KEY is generated automatically and stored in Secret Manager. It must remain stable for the deployment's life — rotating it invalidates all sessions and makes encrypted fields unreadable.
  • The akadmin admin account is bootstrapped on first boot with bootstrap_email (default admin@techequity.cloud) and a Secret Manager-backed password. Bootstrap variables apply on the first boot only.
  • application_version = "latest" is pinned. authentik publishes no latest tag on GHCR; the build pins latest to a known-good release (2026.5.4) via the app-specific AUTHENTIK_VERSION build ARG.
  • Migrations run automatically at startup (advisory-lock guarded), so version upgrades need no separate migration job — the startup probe's generous threshold covers the first-boot migration suite.
  • Health endpoints are unauthenticated: startup GET /-/health/ready/, liveness GET /-/health/live/.
  • LDAP/RADIUS outposts are out of scope on Cloud Run (non-HTTP long-running listeners). Browser SSO (OIDC/SAML) and the embedded outpost work normally.

2. Google Cloud Services & How to Explore Them

All commands assume PROJECT and REGION are set. Service and resource names are reported in the deployment Outputs.

A. Cloud Run — the authentik service

authentik runs as a Cloud Run v2 service with instance-based billing (always-on CPU) so the co-located worker keeps processing between requests. Each deployment creates an immutable revision.

  • Console: Cloud Run → select the service for revisions, traffic, logs, and metrics.
  • CLI:
    gcloud run services list --project "$PROJECT" --region "$REGION"
    gcloud run services describe <service-name> --project "$PROJECT" --region "$REGION"
    gcloud run revisions list --service <service-name> --project "$PROJECT" --region "$REGION"

See App_CloudRun for scaling, concurrency, execution environment, and traffic splitting.

B. Cloud SQL for PostgreSQL 15

authentik stores everything here — users, groups, flows, providers, sessions, cache, and the background task queue. The service connects privately through the Cloud SQL Auth Proxy over a Unix socket; the container entrypoint maps the injected DB_* variables onto authentik's AUTHENTIK_POSTGRESQL__* convention and sets the SSL mode by connection type. On first deploy a single db-init job creates the tenant-scoped database and role.

  • Console: SQL → select the instance for connections, backups, flags, metrics.
  • CLI:
    gcloud sql instances list --project "$PROJECT"
    gcloud sql instances describe <instance-name> --project "$PROJECT"
    gcloud sql connect <instance-name> --user=<db-user> --database=<db-name> --project "$PROJECT"

The instance name, database, user, and password secret are in the Outputs (database and user names are tenant-prefixed). See App_CloudRun for the connection model, backups, and password rotation.

C. Cloud Storage — media

A dedicated bucket is mounted at /media via GCS Fuse for uploaded media (application icons, flow backgrounds). Uploads survive instance replacement and scaling.

  • Console: Cloud Storage → Buckets.
  • CLI:
    gcloud storage buckets list --project "$PROJECT"
    gcloud storage ls gs://<media-bucket>/ # bucket name is in the Outputs

D. Secret Manager

Two authentik secrets are generated automatically:

  • AUTHENTIK_SECRET_KEY — signs sessions/cookies and derives internal encryption. Never rotate it.

  • AUTHENTIK_BOOTSTRAP_PASSWORD — the initial akadmin password, applied on first boot only.

  • Console: Security → Secret Manager.

  • CLI:

    gcloud secrets list --project "$PROJECT" --filter="name~authentik"
    gcloud secrets versions access latest --secret=<secret-name> --project "$PROJECT"

See Authentik_Common for the full secret model.

E. Networking & ingress

The service is reachable at its run.app URL by default. An external HTTPS load balancer with a custom domain, Cloud CDN, and Cloud Armor can be layered on. For an IdP a stable, TLS-fronted hostname matters — the OIDC/SAML redirect URIs you register in client applications must match the URL users reach authentik on.

  • Console: Cloud Run (service URL); Network services → Load balancing.
  • CLI:
    gcloud run services describe <service-name> --region "$REGION" --format='value(status.url)'
    gcloud compute addresses list --project "$PROJECT"

F. Cloud Logging & Monitoring

Server and worker logs both flow to Cloud Logging (they share the container's stdout/stderr). Cloud Run and Cloud SQL metrics flow to Cloud Monitoring.

  • Console: Logging → Logs Explorer; Monitoring → Dashboards / Alerting.
  • CLI:
    gcloud run services logs read <service-name> --project "$PROJECT" --region "$REGION" --limit 50

3. authentik Application Behaviour

  • First-deploy database setup. A single initialization job runs db-init.sh using postgres:15-alpine: it waits for PostgreSQL, creates the tenant-scoped role and database, grants privileges, and defensively grants cloudsqlsuperuser (so any future CREATE EXTENSION in upstream migrations succeeds). The job is idempotent and safe to re-run.
  • Self-migrating startup. authentik's server runs its own Django migrations on every startup, guarded by a PostgreSQL advisory lock. There is no separate migrate job. The first boot runs the full suite — expect several minutes before /-/health/ready/ returns 200; the startup probe allows ~11 minutes.
  • First login. Sign in as akadmin using the bootstrap_email value and the password in the ...-bootstrap-password secret. If the bootstrap variables were absent on the first boot, complete setup at <service-url>/if/flow/initial-setup/ instead.
  • Applications and providers are configured in-app after deploy. OIDC/SAML providers, applications, outposts, and flows are authentik configuration, not Terraform inputs — create them in the Admin interface (<service-url>/if/admin/) once the service is up.
  • Worker co-location. ak worker runs in the same container; its log lines are interleaved with the server's in Cloud Logging. It requires the always-on CPU default — flipping to request-based billing throttles the worker between requests.
  • Health endpoints.
    curl -s "$SERVICE_URL/-/health/ready/" -o /dev/null -w '%{http_code}\n'   # 200 = migrated + DB reachable
    curl -s "$SERVICE_URL/-/health/live/" -o /dev/null -w '%{http_code}\n' # 200 = process alive
  • Inspect job execution:
    gcloud run jobs list --project "$PROJECT" --region "$REGION"
    gcloud run jobs executions list --job <job-name> --project "$PROJECT" --region "$REGION"

4. Configuration Variables

Variables are grouped exactly as they appear on the deployment platform. Only settings specific to or notable for authentik are listed; every other input is inherited from App_CloudRun with its standard behaviour.

Group 1 — Project & Identity

VariableDefaultDescription
project_id(required)Target Google Cloud project.
regionus-central1Region for the service and regional resources.
bootstrap_emailadmin@techequity.cloudEmail of the built-in akadmin account, set on first boot.
bootstrap_password"" (auto-generated)Initial akadmin password. First boot only; stored in Secret Manager.

Group 2 — Deployment Environment

VariableDefaultDescription
tenant_deployment_iddemoShort suffix that makes resource names unique per environment.
support_users[]Emails granted project access and monitoring alerts.
resource_labels{}Labels applied to all resources.

Group 3 — Application Identity

VariableDefaultDescription
application_nameauthentikBase name for resources. Do not change after first deploy.
application_versionlatestauthentik version tag; latest is pinned to 2026.5.4 at build time (no upstream latest tag). Pin explicitly in production.

Group 4 — Runtime & Scaling

VariableDefaultDescription
deploy_applicationtrueSet false to provision infrastructure only.
container_image_sourcecustomThin wrapper image built via Cloud Build (adds the cloud entrypoint + worker launcher).
cpu_limit2000mCPU per instance — shared by server and worker.
memory_limit2GiMemory per instance — 2 GiB is the reliable floor for server + worker.
cpu_always_allocatedtrueKeep true. The co-located worker and outpost WebSockets do work between requests. Flip to false + min_instance_count = 0 only for lab/demo cost-first cold-start.
min_instance_count1Keeps the worker running and outpost WebSockets connected.
max_instance_count5Safe to raise — authentik is stateless across instances.
container_port9000authentik's HTTP port.
enable_cloudsql_volumetrueAuth Proxy Unix socket — the entrypoint sets SSLMODE=disable for the Auth Proxy (socket directory or loopback TCP; the proxy doesn't speak SSL itself), require only for direct TCP to any other host.
timeout_seconds300Maximum request duration.

Group 5 — Access & Ingress Control

VariableDefaultDescription
ingress_settingsallauthentik is a user-facing IdP; browsers and OAuth redirects must reach it.
vpc_egress_settingPRIVATE_RANGES_ONLYRoute only RFC 1918 traffic via VPC.
enable_iapfalseIAP in front of an IdP double-gates every login and blocks OIDC callbacks from non-Google identities — leave off unless you know you need it.

Group 6 — Environment Variables & Secrets

VariableDefaultDescription
environment_variables{}Extra AUTHENTIK_* settings (e.g. email/SMTP: AUTHENTIK_EMAIL__HOST, …). Do not set AUTHENTIK_SECRET_KEY or AUTHENTIK_POSTGRESQL__* here.
secret_environment_variables{}Map of env var → Secret Manager secret name.

Group 7 — Backup & Restore

VariableDefaultDescription
backup_schedule0 2 * * *Automated backup cron (UTC).
backup_retention_days7Retention; raise for production/compliance.
enable_backup_import / backup_source / backup_file / backup_formatrestore optionsRestore from a backup on deploy.

Group 8 — CI/CD & Binary Authorization

Standard App_CloudRun Cloud Build / Cloud Deploy integration — see App_CloudRun. Key inputs: enable_cicd_trigger, github_repository_url, github_token, enable_cloud_deploy, enable_binary_authorization.

Group 10 — Load Balancer, CDN & Custom Domain

VariableDefaultDescription
enable_cloud_armorfalseGlobal HTTPS LB + Cloud Armor WAF — recommended for a public IdP.
application_domains[]Custom hostname(s). Register OIDC redirect URIs against the domain users actually reach.
enable_cdnfalseCDN adds little for an IdP (dynamic, authenticated traffic).

Group 11 — Storage & Filesystem

VariableDefaultDescription
create_cloud_storagetrueThe /media bucket is declared by Authentik_Common.
enable_nfstrueOptional; authentik keeps media on GCS, not NFS.
gcs_volumes[]Extra GCS Fuse mounts; /media is added automatically.

Group 12 — Database Backend

VariableDefaultDescription
database_typePOSTGRES_15authentik requires PostgreSQL — MySQL values are rejected by validation.
db_nameauthentikDatabase base name (tenant-prefixed at deploy). Immutable after first deploy.
db_userauthentikApplication DB user base name (tenant-prefixed).
database_password_length32Generated password length (16–64).

Group 13 — Jobs & Scheduled Tasks

VariableDefaultDescription
initialization_jobs[]Leave empty to use the built-in single db-init job.
cron_jobs[]Not needed — the co-located worker runs authentik's scheduled tasks.

Group 14 — Observability & Health

VariableDefaultDescription
startup_probeHTTP /-/health/ready/, 60s delay, 40×15sUnauthenticated. Generous threshold for first-boot migrations (~11 min budget).
liveness_probeHTTP /-/health/live/, 60s delay, 3×30sUnauthenticated process-alive check.
uptime_check_configdisabledOptional Cloud Monitoring uptime check (point it at /-/health/live/).

Group 21 — Redis

VariableDefaultDescription
enable_redisfalseInert. authentik ≥ 2025.10 removed Redis entirely; main.tf pins enable_redis = false.

Group 22 — VPC Service Controls & Audit Logging

VariableDefaultDescription
enable_vpc_scfalseEnforce a VPC-SC perimeter (requires organization_id).
enable_audit_loggingfalseDetailed Cloud Audit Logs.

5. Outputs

Returned on a successful deployment — the quickest way to locate and explore the running resources.

OutputDescription
service_nameCloud Run service name.
service_urlDefault run.app URL of the service.
service_locationRegion the service runs in.
stage_servicesStage-specific service names (Cloud Deploy).
load_balancer_ip / load_balancer_urlExternal HTTPS load balancer IP / URL (when enabled).
database_instance_nameCloud SQL instance name.
database_name / database_userApplication database name / user (tenant-prefixed).
database_password_secretSecret Manager secret holding the DB password.
database_host / database_portDB endpoint / port.
storage_bucketsCreated Cloud Storage buckets (includes the /media bucket).
network_name / network_exists / regionsVPC network, presence, regions.
container_image / container_registryDeployed image and Artifact Registry repo.
monitoring_enabled / monitoring_notification_channels / uptime_check_namesMonitoring status, channels, uptime checks.
initialization_jobsNames of the setup jobs (db-init).
deployment_id / tenant_id / resource_prefixNaming identifiers.
project_id / project_numberProject identifiers.
cicd_enabled / cicd_configuration / github_repository_*CI/CD status and details.
artifact_registry_repository / cloudbuild_trigger_name / cloudbuild_trigger_idRegistry and build trigger.
vpc_sc_enabled / vpc_sc_perimeter_name / vpc_sc_dry_run_modeVPC-SC status.
audit_logging_enabled / artifact_registry_cmek_enabledAudit logging and CMEK status.

6. Configuration Pitfalls & Sensible Defaults

Risk: Critical (data loss / outage / security) — High (service degraded) — Medium (cost or partial degradation) — Low (minor).

Inherited plan-time validation. This module passes its configuration through the App_CloudRun foundation engine, which validates values and combinations at plan time — invalid configuration fails the plan with a clear, named error before any resource is created, so most mistakes below are caught up front rather than at apply or runtime.

SettingSensible valueRiskConsequence if wrong
AUTHENTIK_SECRET_KEY (auto-generated)Never rotateCriticalRotating it invalidates all active sessions and makes encrypted fields (stored credentials, tokens) unreadable.
database_typePOSTGRES_15CriticalMySQL is blocked by validation — authentik requires PostgreSQL ≥ 14.
db_name / db_userSet onceCriticalImmutable after first deploy; renaming recreates the DB/user and destroys all identity data.
Worker listen ports (entrypoint-managed)Leave the entrypoint's AUTHENTIK_LISTEN__* loopback defaultsCriticalThe co-located ak worker also starts an HTTP listener and inherits the server's default 0.0.0.0:9000; if it wins the bind race it answers every route — health endpoints included — with empty 200s: a blank UI with phantom-healthy probes. The entrypoint pins the worker to loopback ports (127.0.0.1:9001/9444/9301) so the server owns :9000 — a 200 with an empty body means the wrong process answered.
min_instance_count1 (with always-on CPU)High0 lets the instance scale away: outpost WebSockets disconnect, and background tasks (scheduled jobs, outpost sync) are delayed until the next request wakes an instance.
cpu_always_allocatedtrueHighRequest-based billing throttles the co-located worker between requests — the task queue stalls even at min=1.
startup_probe.path/-/health/ready/ (unauthenticated)MediumPointing the probe at an authenticated page returns 401/403 to the prober — the revision never becomes ready even though authentik booted fine.
bootstrap_password / bootstrap_emailSet before first deployMediumApplied on the first boot only. Changing them later has no effect — manage akadmin in-app, or use /if/flow/initial-setup/ if bootstrap vars were absent on first boot.
application_versionPin a releaseMediumlatest is silently pinned to 2026.5.4; an explicit pin makes upgrades deliberate. Nonexistent tags fail the Cloud Build with MANIFEST_UNKNOWN.
memory_limit2GiMediumServer + worker share the limit; lower values risk OOM during migrations or flow imports.
environment_variablesAUTHENTIK_POSTGRESQL__*Leave unsetMediumThe entrypoint maps the injected DB_* values; hardcoding short DB names authenticates as a non-existent role (names are tenant-prefixed).
LDAP/RADIUS outpostsNot on Cloud RunLowNon-HTTP listeners can't be served by Cloud Run — use the GKE variant or an external host for those outposts.
enable_iapfalseMediumIAP double-gates every login and breaks OAuth/SAML callbacks from external parties.

For the foundation behaviour referenced throughout — service identity, scaling and concurrency, ingress and load balancing, CI/CD, Cloud Armor, IAP, Binary Authorization, VPC-SC, backups, and image mirroring — see App_CloudRun. authentik-specific application configuration shared with the GKE variant is described in Authentik_Common.