adjust auth-objects signature
This commit is contained in:
parent
0055eb3435
commit
2c3a031081
1 changed files with 3 additions and 4 deletions
|
@ -65,15 +65,14 @@
|
||||||
(when (contains? config :mon-cfg)
|
(when (contains? config :mon-cfg)
|
||||||
(mon/generate-config)))))))
|
(mon/generate-config)))))))
|
||||||
|
|
||||||
; REVIEW gec: In general, how do we handle config and auth for auth-objects?
|
(defn auth-objects [config auth]
|
||||||
(defn auth-objects [config] ; ToDo: ADR for generate functions - vector or no vector?
|
|
||||||
(map yaml/to-string
|
(map yaml/to-string
|
||||||
(filter #(not (nil? %))
|
(filter #(not (nil? %))
|
||||||
(cm/concat-vec
|
(cm/concat-vec
|
||||||
(ns/generate config)
|
(ns/generate config)
|
||||||
[(postgres/generate-secret config config) ; "config config" seems not right
|
[(postgres/generate-secret config auth)
|
||||||
(forgejo/generate-secrets config)]
|
(forgejo/generate-secrets config)]
|
||||||
(when (contains? config :restic-repository)
|
(when (contains? config :restic-repository)
|
||||||
[(backup/generate-secret config)])
|
[(backup/generate-secret config)])
|
||||||
(when (contains? config :mon-cfg)
|
(when (contains? config :mon-cfg)
|
||||||
(mon/generate-auth (:mon-cfg config) (:mon-auth config))))))) ; Here also "config config" seems not right
|
(mon/generate-auth (:mon-cfg config) (:mon-auth auth)))))))
|
||||||
|
|
Loading…
Reference in a new issue