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)
|
||||
(mon/generate-config)))))))
|
||||
|
||||
; REVIEW gec: In general, how do we handle config and auth for auth-objects?
|
||||
(defn auth-objects [config] ; ToDo: ADR for generate functions - vector or no vector?
|
||||
(defn auth-objects [config auth]
|
||||
(map yaml/to-string
|
||||
(filter #(not (nil? %))
|
||||
(cm/concat-vec
|
||||
(ns/generate config)
|
||||
[(postgres/generate-secret config config) ; "config config" seems not right
|
||||
[(postgres/generate-secret config auth)
|
||||
(forgejo/generate-secrets config)]
|
||||
(when (contains? config :restic-repository)
|
||||
[(backup/generate-secret config)])
|
||||
(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