Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Created May 1, 2019 20:14
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save guitarrapc/419790a8a9861535bd78da7470021945 to your computer and use it in GitHub Desktop.
{
"AwsSecretsManagerSettings": {
"SecretGroups": [
"test"
]
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*"
}
private class AwsSecretsManagerSettings
{
/// <summary>
/// The allowed secret groups, e.g. Shared or MyAppsSecrets
/// </summary>
public string[] SecretGroups { get; set; } = Array.Empty<string>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment