{
  "manifest_version": "1.0.0",
  "template": {
    "id": "50a7ca1e-044c-4a29-bca4-df460f6f7e6b",
    "slug": "authentik-railway",
    "name": "Authentik",
    "description": "Self-host Authentik, the open source identity provider for SSO and MFA",
    "url": "https://railway.com/deploy/authentik-railway",
    "upstream": {
      "image": "ghcr.io/goauthentik/server:2026.5.6"
    }
  },
  "services": [
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "authentik",
      "source": {
        "image": "ghcr.io/goauthentik/server:2026.5.6"
      },
      "needs_volume": false,
      "http": true
    },
    {
      "name": "authentik-worker",
      "source": {
        "image": "ghcr.io/goauthentik/server:2026.5.6"
      },
      "needs_volume": false,
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Data directory, a subdirectory of the volume mount",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Private hostname, reachable only inside the project",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Standard PostgreSQL port",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "libpq alias of the superuser name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "libpq alias of the default database",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "libpq alias of the superuser password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Default database created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Private connection string, use this from other services",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "Superuser created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "Validity window of the generated self-signed TLS certificate",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Generated superuser password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DATABASE_PUBLIC_URL",
      "service": "Postgres",
      "description": "Public connection string over the TCP proxy, for external tools",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Grace period for in-flight connections on redeploy",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "PORT",
      "service": "authentik",
      "description": "Health-check target port",
      "secret": false,
      "strategy": "default",
      "default": "9000"
    },
    {
      "key": "AUTHENTIK_LOG_LEVEL",
      "service": "authentik",
      "description": "Application log level",
      "secret": false,
      "strategy": "default",
      "default": "info"
    },
    {
      "key": "AUTHENTIK_SECRET_KEY",
      "service": "authentik",
      "description": "Cookie and session signing key",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "AUTHENTIK_WEB__THREADS",
      "service": "authentik",
      "description": "Threads per worker process",
      "secret": false,
      "strategy": "default",
      "default": "4"
    },
    {
      "key": "AUTHENTIK_WEB__WORKERS",
      "service": "authentik",
      "description": "Gunicorn worker processes",
      "secret": false,
      "strategy": "default",
      "default": "2"
    },
    {
      "key": "AUTHENTIK_BOOTSTRAP_EMAIL",
      "service": "authentik",
      "description": "First admin account email",
      "secret": false,
      "strategy": "default",
      "default": "admin@example.com"
    },
    {
      "key": "AUTHENTIK_POSTGRESQL__HOST",
      "service": "authentik",
      "description": "Private database hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "AUTHENTIK_POSTGRESQL__NAME",
      "service": "authentik",
      "description": "Database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_POSTGRESQL__PORT",
      "service": "authentik",
      "description": "Database port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_POSTGRESQL__USER",
      "service": "authentik",
      "description": "Database user",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_STORAGE__BACKEND",
      "service": "authentik",
      "description": "Store media in object storage",
      "secret": false,
      "strategy": "default",
      "default": "s3"
    },
    {
      "key": "AUTHENTIK_BOOTSTRAP_PASSWORD",
      "service": "authentik",
      "description": "First admin account password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "AUTHENTIK_STORAGE__S3__REGION",
      "service": "authentik",
      "description": "Bucket region",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_POSTGRESQL__PASSWORD",
      "service": "authentik",
      "description": "Database password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_STORAGE__S3__ENDPOINT",
      "service": "authentik",
      "description": "Bucket API endpoint URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_STORAGE__S3__ACCESS_KEY",
      "service": "authentik",
      "description": "Bucket access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_STORAGE__S3__SECRET_KEY",
      "service": "authentik",
      "description": "Bucket secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_ERROR_REPORTING__ENABLED",
      "service": "authentik",
      "description": "Disable Sentry error reporting",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "AUTHENTIK_STORAGE__S3__BUCKET_NAME",
      "service": "authentik",
      "description": "Bucket name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_DISABLE_STARTUP_ANALYTICS",
      "service": "authentik",
      "description": "Disable startup analytics ping",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "AUTHENTIK_LISTEN__TRUSTED_PROXY_CIDRS",
      "service": "authentik",
      "description": "Proxies allowed to set forwarded headers",
      "secret": false,
      "strategy": "default",
      "default": "127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,fe80::/10,::1/128,100.64.0.0/10,fd00::/8"
    },
    {
      "key": "AUTHENTIK_LOG_LEVEL",
      "service": "authentik-worker",
      "description": "Application log level",
      "secret": false,
      "strategy": "default",
      "default": "info"
    },
    {
      "key": "AUTHENTIK_SECRET_KEY",
      "service": "authentik-worker",
      "description": "Must match the server key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_BOOTSTRAP_EMAIL",
      "service": "authentik-worker",
      "description": "First admin account email",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_POSTGRESQL__HOST",
      "service": "authentik-worker",
      "description": "Private database hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "AUTHENTIK_POSTGRESQL__NAME",
      "service": "authentik-worker",
      "description": "Database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_POSTGRESQL__PORT",
      "service": "authentik-worker",
      "description": "Database port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_POSTGRESQL__USER",
      "service": "authentik-worker",
      "description": "Database user",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_STORAGE__BACKEND",
      "service": "authentik-worker",
      "description": "Store media in object storage",
      "secret": false,
      "strategy": "default",
      "default": "s3"
    },
    {
      "key": "AUTHENTIK_WORKER__PROCESSES",
      "service": "authentik-worker",
      "description": "Worker processes, keep at one",
      "secret": false,
      "strategy": "default",
      "default": "1"
    },
    {
      "key": "AUTHENTIK_BOOTSTRAP_PASSWORD",
      "service": "authentik-worker",
      "description": "First admin account password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_STORAGE__S3__REGION",
      "service": "authentik-worker",
      "description": "Bucket region",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_POSTGRESQL__PASSWORD",
      "service": "authentik-worker",
      "description": "Database password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_STORAGE__S3__ENDPOINT",
      "service": "authentik-worker",
      "description": "Bucket API endpoint URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_STORAGE__S3__ACCESS_KEY",
      "service": "authentik-worker",
      "description": "Bucket access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_STORAGE__S3__SECRET_KEY",
      "service": "authentik-worker",
      "description": "Bucket secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_ERROR_REPORTING__ENABLED",
      "service": "authentik-worker",
      "description": "Disable Sentry error reporting",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "AUTHENTIK_STORAGE__S3__BUCKET_NAME",
      "service": "authentik-worker",
      "description": "Bucket name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AUTHENTIK_DISABLE_STARTUP_ANALYTICS",
      "service": "authentik-worker",
      "description": "Disable startup analytics ping",
      "secret": false,
      "strategy": "default",
      "default": "true"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "authentik-railway"
      }
    },
    "cli": "railway deploy --template authentik-railway",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "50a7ca1e-044c-4a29-bca4-df460f6f7e6b",
            "serializedConfig": {
              "buckets": {
                "c1167e8d-79fe-4fef-8eb1-c02088c8e11d": {
                  "name": "authentik-storage"
                }
              },
              "services": {
                "7919d853-dab8-41d8-9676-793cb98c0abf": {
                  "icon": "https://devicons.railway.app/i/postgresql.svg",
                  "name": "Postgres",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "Data directory, a subdirectory of the volume mount",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Private hostname, reachable only inside the project",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Standard PostgreSQL port",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "libpq alias of the superuser name",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "libpq alias of the default database",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "libpq alias of the superuser password",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Default database created on first boot",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Private connection string, use this from other services",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Superuser created on first boot",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "Validity window of the generated self-signed TLS certificate",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Generated superuser password",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "DATABASE_PUBLIC_URL": {
                      "description": "Public connection string over the TCP proxy, for external tools",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{PGDATABASE}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Grace period for in-flight connections on redeploy",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "7919d853-dab8-41d8-9676-793cb98c0abf": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                },
                "79c511d3-9bc4-48f8-babd-0b88b9a77440": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/authentik.svg",
                  "name": "authentik",
                  "deploy": {
                    "startCommand": "dumb-init -- ak server",
                    "healthcheckPath": "/api/v3/root/config/",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/goauthentik/server:2026.5.6"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Health-check target port",
                      "defaultValue": "9000"
                    },
                    "AUTHENTIK_LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Application log level",
                      "defaultValue": "info"
                    },
                    "AUTHENTIK_SECRET_KEY": {
                      "isOptional": false,
                      "description": "Cookie and session signing key",
                      "defaultValue": "{{AUTHENTIK_SECRET_KEY}}"
                    },
                    "AUTHENTIK_WEB__THREADS": {
                      "isOptional": false,
                      "description": "Threads per worker process",
                      "defaultValue": "4"
                    },
                    "AUTHENTIK_WEB__WORKERS": {
                      "isOptional": false,
                      "description": "Gunicorn worker processes",
                      "defaultValue": "2"
                    },
                    "AUTHENTIK_BOOTSTRAP_EMAIL": {
                      "isOptional": false,
                      "description": "First admin account email",
                      "defaultValue": "admin@example.com"
                    },
                    "AUTHENTIK_POSTGRESQL__HOST": {
                      "isOptional": false,
                      "description": "Private database hostname",
                      "defaultValue": "${{Postgres.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "AUTHENTIK_POSTGRESQL__NAME": {
                      "isOptional": false,
                      "description": "Database name",
                      "defaultValue": "${{Postgres.PGDATABASE}}"
                    },
                    "AUTHENTIK_POSTGRESQL__PORT": {
                      "isOptional": false,
                      "description": "Database port",
                      "defaultValue": "${{Postgres.PGPORT}}"
                    },
                    "AUTHENTIK_POSTGRESQL__USER": {
                      "isOptional": false,
                      "description": "Database user",
                      "defaultValue": "${{Postgres.PGUSER}}"
                    },
                    "AUTHENTIK_STORAGE__BACKEND": {
                      "isOptional": false,
                      "description": "Store media in object storage",
                      "defaultValue": "s3"
                    },
                    "AUTHENTIK_BOOTSTRAP_PASSWORD": {
                      "isOptional": false,
                      "description": "First admin account password",
                      "defaultValue": "{{AUTHENTIK_BOOTSTRAP_PASSWORD}}"
                    },
                    "AUTHENTIK_STORAGE__S3__REGION": {
                      "isOptional": false,
                      "description": "Bucket region",
                      "defaultValue": "${{authentik-storage.REGION}}"
                    },
                    "AUTHENTIK_POSTGRESQL__PASSWORD": {
                      "isOptional": false,
                      "description": "Database password",
                      "defaultValue": "${{Postgres.PGPASSWORD}}"
                    },
                    "AUTHENTIK_STORAGE__S3__ENDPOINT": {
                      "isOptional": false,
                      "description": "Bucket API endpoint URL",
                      "defaultValue": "${{authentik-storage.ENDPOINT}}"
                    },
                    "AUTHENTIK_STORAGE__S3__ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Bucket access key",
                      "defaultValue": "${{authentik-storage.ACCESS_KEY_ID}}"
                    },
                    "AUTHENTIK_STORAGE__S3__SECRET_KEY": {
                      "isOptional": false,
                      "description": "Bucket secret key",
                      "defaultValue": "${{authentik-storage.SECRET_ACCESS_KEY}}"
                    },
                    "AUTHENTIK_ERROR_REPORTING__ENABLED": {
                      "isOptional": false,
                      "description": "Disable Sentry error reporting",
                      "defaultValue": "false"
                    },
                    "AUTHENTIK_STORAGE__S3__BUCKET_NAME": {
                      "isOptional": false,
                      "description": "Bucket name",
                      "defaultValue": "${{authentik-storage.BUCKET}}"
                    },
                    "AUTHENTIK_DISABLE_STARTUP_ANALYTICS": {
                      "isOptional": false,
                      "description": "Disable startup analytics ping",
                      "defaultValue": "true"
                    },
                    "AUTHENTIK_LISTEN__TRUSTED_PROXY_CIDRS": {
                      "isOptional": false,
                      "description": "Proxies allowed to set forwarded headers",
                      "defaultValue": "127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,fe80::/10,::1/128,100.64.0.0/10,fd00::/8"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:9000": {
                        "port": 9000
                      }
                    }
                  }
                },
                "c9d4fc8c-3ff8-40cf-b619-19843131219c": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/authentik.svg",
                  "name": "authentik-worker",
                  "deploy": {
                    "startCommand": "dumb-init -- ak worker",
                    "healthcheckPath": null,
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/goauthentik/server:2026.5.6"
                  },
                  "variables": {
                    "AUTHENTIK_LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Application log level",
                      "defaultValue": "info"
                    },
                    "AUTHENTIK_SECRET_KEY": {
                      "isOptional": false,
                      "description": "Must match the server key",
                      "defaultValue": "${{authentik.AUTHENTIK_SECRET_KEY}}"
                    },
                    "AUTHENTIK_BOOTSTRAP_EMAIL": {
                      "isOptional": false,
                      "description": "First admin account email",
                      "defaultValue": "${{authentik.AUTHENTIK_BOOTSTRAP_EMAIL}}"
                    },
                    "AUTHENTIK_POSTGRESQL__HOST": {
                      "isOptional": false,
                      "description": "Private database hostname",
                      "defaultValue": "${{Postgres.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "AUTHENTIK_POSTGRESQL__NAME": {
                      "isOptional": false,
                      "description": "Database name",
                      "defaultValue": "${{Postgres.PGDATABASE}}"
                    },
                    "AUTHENTIK_POSTGRESQL__PORT": {
                      "isOptional": false,
                      "description": "Database port",
                      "defaultValue": "${{Postgres.PGPORT}}"
                    },
                    "AUTHENTIK_POSTGRESQL__USER": {
                      "isOptional": false,
                      "description": "Database user",
                      "defaultValue": "${{Postgres.PGUSER}}"
                    },
                    "AUTHENTIK_STORAGE__BACKEND": {
                      "isOptional": false,
                      "description": "Store media in object storage",
                      "defaultValue": "s3"
                    },
                    "AUTHENTIK_WORKER__PROCESSES": {
                      "isOptional": false,
                      "description": "Worker processes, keep at one",
                      "defaultValue": "1"
                    },
                    "AUTHENTIK_BOOTSTRAP_PASSWORD": {
                      "isOptional": false,
                      "description": "First admin account password",
                      "defaultValue": "${{authentik.AUTHENTIK_BOOTSTRAP_PASSWORD}}"
                    },
                    "AUTHENTIK_STORAGE__S3__REGION": {
                      "isOptional": false,
                      "description": "Bucket region",
                      "defaultValue": "${{authentik-storage.REGION}}"
                    },
                    "AUTHENTIK_POSTGRESQL__PASSWORD": {
                      "isOptional": false,
                      "description": "Database password",
                      "defaultValue": "${{Postgres.PGPASSWORD}}"
                    },
                    "AUTHENTIK_STORAGE__S3__ENDPOINT": {
                      "isOptional": false,
                      "description": "Bucket API endpoint URL",
                      "defaultValue": "${{authentik-storage.ENDPOINT}}"
                    },
                    "AUTHENTIK_STORAGE__S3__ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Bucket access key",
                      "defaultValue": "${{authentik-storage.ACCESS_KEY_ID}}"
                    },
                    "AUTHENTIK_STORAGE__S3__SECRET_KEY": {
                      "isOptional": false,
                      "description": "Bucket secret key",
                      "defaultValue": "${{authentik-storage.SECRET_ACCESS_KEY}}"
                    },
                    "AUTHENTIK_ERROR_REPORTING__ENABLED": {
                      "isOptional": false,
                      "description": "Disable Sentry error reporting",
                      "defaultValue": "false"
                    },
                    "AUTHENTIK_STORAGE__S3__BUCKET_NAME": {
                      "isOptional": false,
                      "description": "Bucket name",
                      "defaultValue": "${{authentik-storage.BUCKET}}"
                    },
                    "AUTHENTIK_DISABLE_STARTUP_ANALYTICS": {
                      "isOptional": false,
                      "description": "Disable startup analytics ping",
                      "defaultValue": "true"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "authentik",
      "method": "GET",
      "path": "/api/v3/root/config/",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 3,
    "needs_volume": true
  },
  "generated_at": "2026-09-10T10:14:45.332Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-04T14:11:14.942Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_1665fb6e789844259881",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 159,
    "typical_build_seconds": 0,
    "typical_start_seconds": 31,
    "slowest_service": "authentik-worker"
  }
}
