-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathEnvironmentVariableNames.cs
More file actions
31 lines (29 loc) · 1.43 KB
/
EnvironmentVariableNames.cs
File metadata and controls
31 lines (29 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
//
namespace Microsoft.Extensions.Configuration.AzureAppConfiguration
{
/// <summary>
/// Environment variables used to configure Azure App Configuration provider behavior.
/// </summary>
internal static class EnvironmentVariableNames
{
/// <summary>
/// Environment variable to disable Feature Management schema compatibility.
/// The value of this variable is a boolean string, e.g. "true" or "false".
/// When set to "true", schema compatibility checks for feature flags are disabled,
/// and all feature flags will be interpreted using the Microsoft Feature Flags schema.
/// </summary>
public const string FmSchemacompatibilityDisabled = "AZURE_APP_CONFIGURATION_FM_SCHEMA_COMPATIBILITY_DISABLED";
/// <summary>
/// Environment variable to disable request tracing.
/// The value of this variable is a boolean string, e.g. "true" or "false".
/// </summary>
public const string RequestTracingDisabled = "AZURE_APP_CONFIGURATION_TRACING_DISABLED";
/// <summary>
/// Environment variable to disable Azure App Configuration provider.
/// The value of this variable is a boolean string, e.g. "true" or "false".
/// </summary>
public const string AppConfigurationProviderDisabled = "AZURE_APP_CONFIGURATION_PROVIDER_DISABLED";
}
}