Open
Description
Would be really nice to be able to declare config like so:
data class MyPartnerConfig(
val base_url: String,
val credential: SecretRef<MyPartnerCredential>
)
data class MyPartnerCredential(
val auth_scheme: String,
val auth_credential: String
)
With this app config YAML:
my_partner_service:
base_url: https://example.com/v2/
credential: filesystem:/etc/secrets/my_partner_credential.yaml
And this my_partner_credential.yaml:
auth_scheme: Bearer
auth_credential: peanutbutter
This uses a Misk-provided class for referencing secrets.
interface SecretRef<T> {
val value: T
}
It would also be nice to have it work if the partner credential is a different format. Some initial kinds:
- A
.txt
file for a single string. This is referenced asSecretRef<String>
and decoded as UTF-8 and then trimmed. - A
.pem
file for a private key. This referenced as aSecretRef<TrustStore>
and parsed withSslLoader
. - A
.json
file for a JSON file. This is referenced as aSecretRef<MyObject>
and parsed with Moshi.
Secrets are loaded and parsed at config-parsing time. So if a secret is bad, we find out during startup!