Move all files to root
This commit is contained in:
32
src/main/configs.cljs
Normal file
32
src/main/configs.cljs
Normal file
@@ -0,0 +1,32 @@
|
||||
(ns configs)
|
||||
|
||||
(defn get-env [key default] (let [value (aget js/process.env key)]
|
||||
(if (or (nil? value) (identical? value ""))
|
||||
default value)))
|
||||
|
||||
(def cfg
|
||||
{:sshKeyName (get-env "SSH_KEY_NAME" nil)
|
||||
:sshPersonalKeyName (get-env "PERSONAL_KEY_NAME" nil)
|
||||
:privateKeySsh (.toString (js/Buffer.from (get-env "PRIVATE_KEY" nil) "base64") "utf-8")
|
||||
:hcloudToken (get-env "HCLOUD_TOKEN" nil)
|
||||
:wasabiId (get-env "WASABI_ACCESS_KEY" nil)
|
||||
:wasabiKey (get-env "WASABI_SECRET_KEY" nil)
|
||||
|
||||
:apiToken (get-env "CLOUDFLARE_TOKEN" nil)
|
||||
|
||||
;; Non-pulumi vals
|
||||
:resource-path (get-env "RESOURCE_PATH" "resources")
|
||||
|
||||
:secrets-json (try
|
||||
(-> (js/require "path")
|
||||
(.join js/__dirname ".." "init-secrets.json")
|
||||
(js/require)
|
||||
(js->clj :keywordize-keys true))
|
||||
(catch :default e
|
||||
(throw (js/Error. (str "Failed to load init-secrets.json: " e)))))
|
||||
:docker-repo (get-env "DOCKER_REPO" "")
|
||||
:harbor-repo (get-env "HARBOR_REPO" "")
|
||||
:public-image-registry-url (get-env "PUBLIC_IMAGE_REGISTRY_URL" "")
|
||||
:public-image-registry-username (get-env "PUBLIC_IMAGE_REGISTRY_USERNAME" "")
|
||||
:public-image-registry-password (get-env "PUBLIC_IMAGE_REGISTRY_PASSWORD" "")
|
||||
:dns-email (get-env "DNS_EMAIL" "")})
|
||||
Reference in New Issue
Block a user