Use correct spec path in c4k

This commit is contained in:
bom 2024-10-11 13:29:08 +02:00
parent 8f8f0d643a
commit 87131fa50f
2 changed files with 2 additions and 2 deletions

View file

@ -4,6 +4,7 @@
[cheshire.core :refer [parse-string generate-string]]
[dda.build.devops :as d]
[dda.build.c4k.domain :as domain]
[dda.build.terragrunt.domain :as tg-domain]
[dda.build.infrastructure :as i]))
(st/instrument `clean-build-dir!)
@ -63,7 +64,7 @@
can be changed by adding another value for ':c4k-config-filename'
"
[devops ::d/devops
tf-out ::domain/tf-out]
tf-out ::tg-domain/tf-out]
(let [config (merge default devops)
default-c4k-config (parse-string (slurp (domain/config-path config))
(fn [k] (keyword (.toLowerCase k))))

View file

@ -5,7 +5,6 @@
[dda.build.terragrunt.domain :as td]))
(s/def ::c4k-output-filename string?)
(s/def ::c4k-config-filename string?)
(s/def ::c4k-auth-filename string?)