firmitas: update workdir location for certs

Signed-off-by: David Kirwan <davidkirwanirl@gmail.com>
This commit is contained in:
David Kirwan 2024-09-09 14:32:49 +01:00
parent 2f260b760d
commit a30d42b919
No known key found for this signature in database
GPG key ID: A5893AB6474AC37D

View file

@ -56,10 +56,10 @@ Variables related to probing
"""
# The location of the X.509 standard TLS certificates
certloca = "/etc/firmitas/{{ (env == 'staging')|ternary('certificates/staging', 'certificates/production') }}" # noqa : S108
certloca = "/tmp/firmitas/{{ (env == 'staging')|ternary('certificates/staging', 'certificates/production') }}" # noqa : S108
# The location of the service hostnames and maintainers map
hostloca = "/etc/firmitas/{{ (env == 'staging')|ternary('certificates/staging/staging_certlist.txt', 'certificates/production/production_certlist.txt') }}" # noqa: S108
hostloca = "/tmp/firmitas/{{ (env == 'staging')|ternary('certificates/staging/staging_certlist.txt', 'certificates/production/production_certlist.txt') }}" # noqa: S108
"""
Variables related to logging