Skip to content

Commit

Permalink
fix(authelia): new totp options keys (#112)
Browse files Browse the repository at this point in the history
Fixes a copy and paste error in the TOTP config.

Co-authored-by: James Elliott <[email protected]>
  • Loading branch information
timoschwarzer and james-d-elliott authored Dec 3, 2021
1 parent e2e5314 commit 3e5d038
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/authelia/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: authelia
version: 0.7.1
version: 0.7.2
kubeVersion: ">= 1.13.0-0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand Down
4 changes: 2 additions & 2 deletions charts/authelia/templates/configMap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ data:
{{- end }}
totp:
issuer: {{ default .Values.domain .Values.configMap.totp.issuer }}
algorithm: {{ default "sha1" .Values.configMap.totp.issuer }}
digits: {{ default 6 .Values.configMap.totp.issuer }}
algorithm: {{ default "sha1" .Values.configMap.totp.algorithm }}
digits: {{ default 6 .Values.configMap.totp.digits }}
period: {{ default 30 .Values.configMap.totp.period }}
skew: {{ default 1 .Values.configMap.totp.skew }}
ntp:
Expand Down

0 comments on commit 3e5d038

Please sign in to comment.