mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-06 05:54:28 -04:00
AB#2512 Config secrets via env var & config refactoring (#544)
* refactor measurements to use consistent types and less byte pushing * refactor: only rely on a single multierr dependency * extend config creation with envar support * document changes Signed-off-by: Fabian Kammel <fk@edgeless.systems>
This commit is contained in:
parent
80a801629e
commit
bb76a4e4c8
42 changed files with 932 additions and 791 deletions
|
@ -113,6 +113,11 @@ const (
|
|||
MinControllerCount = 1
|
||||
// MinWorkerCount is the minimum number of worker nodes.
|
||||
MinWorkerCount = 1
|
||||
// EnvVarPrefix is expected prefix for environment variables used to overwrite config parameters.
|
||||
EnvVarPrefix = "CONSTELL_"
|
||||
// EnvVarAzureClientSecretValue is environment variable to overwrite
|
||||
// provider.azure.clientSecretValue .
|
||||
EnvVarAzureClientSecretValue = EnvVarPrefix + "AZURE_CLIENT_SECRET_VALUE"
|
||||
|
||||
//
|
||||
// Kubernetes.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue