14 lines
382 B
YAML
14 lines
382 B
YAML
# DNS provider API token for cert-manager DNS-01 challenge.
|
|
# Replace <YOUR_DNS_API_TOKEN> with your Cloudflare API token
|
|
# (or adjust for your DNS provider).
|
|
#
|
|
# Encrypt this file with: sops --encrypt --in-place secrets.yaml
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: cloudflare-credentials
|
|
namespace: infrastructure
|
|
type: Opaque
|
|
stringData:
|
|
api-token: <YOUR_DNS_API_TOKEN>
|