feat(config): add option to specify default value to env var expansion (#5020)

* feat: Add option to specify default value to env var expansion

* fix: remove unused capturing group for env var replacement

Co-authored-by: Nicolas Giard <github@ngpixel.com>
This commit is contained in:
Marián Skrip
2022-02-19 01:56:02 +01:00
committed by GitHub
parent 2815f38c52
commit de6d4beef9
2 changed files with 8 additions and 4 deletions

View File

@@ -15,6 +15,6 @@ ssl:
provider: letsencrypt
domain: $(LETSENCRYPT_DOMAIN)
subscriberEmail: $(LETSENCRYPT_EMAIL)
logLevel: info
logFormat: $(LOG_FORMAT)
logLevel: $(LOG_LEVEL:info)
logFormat: $(LOG_FORMAT:default)
ha: $(HA_ACTIVE)