diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-07-10 22:22:41 +0200 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-07-10 22:22:41 +0200 |
| commit | 1bc2e0578356a3482c827d85eb44bf86c2895a4b (patch) | |
| tree | 840d791c50b1cd867a44e7b0ca1423dd0931210e /server/src/Data/Static/AppEnvironmentVariables.cs | |
| parent | 79a0c629b7d7d187ac04ad4069adfe8aa927cac3 (diff) | |
| download | greatoffice-1bc2e0578356a3482c827d85eb44bf86c2895a4b.tar.xz greatoffice-1bc2e0578356a3482c827d85eb44bf86c2895a4b.zip | |
feat: Encrypt data protection data with a cert
Diffstat (limited to 'server/src/Data/Static/AppEnvironmentVariables.cs')
| -rw-r--r-- | server/src/Data/Static/AppEnvironmentVariables.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/Data/Static/AppEnvironmentVariables.cs b/server/src/Data/Static/AppEnvironmentVariables.cs index 2a2d591..c3f821d 100644 --- a/server/src/Data/Static/AppEnvironmentVariables.cs +++ b/server/src/Data/Static/AppEnvironmentVariables.cs @@ -11,11 +11,11 @@ public static class AppEnvironmentVariables /// </summary> public const string VAULT_URL = "VAULT_URL"; /// <summary> - /// The vault key name for the main configuration json object, described by <see cref="AppConfiguration"/> + /// The duration of which to keep a local cached version of the configuration /// </summary> - public const string MAIN_CONFIG_SHEET = "MAIN_CONFIG_SHEET"; + public const string VAULT_CACHE_TTL = "VAULT_CACHE_TTL"; /// <summary> - /// The duration of which to keep a local cached version of the configuration + /// The vault key name for the main configuration json object, described by <see cref="AppConfiguration"/> /// </summary> - public const string VAULT_CACHE_TTL = "CONFIG_CACHE_TTL"; + public const string MAIN_CONFIG_SHEET = "MAIN_CONFIG_SHEET"; } |
