7 lines
174 B
Clojure
7 lines
174 B
Clojure
(ns utils.vault)
|
|
|
|
|
|
(defn get-secret-val
|
|
"Extract a specific key from a Vault secret Output/Promise."
|
|
[secret-promise key]
|
|
(.then secret-promise #(aget (.-data %) key))) |