#!/usr/bin/env bash # Usage: bash manifests/authentik/authentik-proxy-secret.sh # Description: Creates the Authentik proxy outpost API token secret set -euo pipefail source "$(dirname "$0")/../../.env" kubectl create secret generic authentik-proxy-token \ --namespace authentik \ --from-literal=token="${AUTHENTIK_PROXY_TOKEN}" \ --dry-run=client -o yaml | kubectl apply -f -