Woof.Settings.AKV 7.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Woof.Settings.AKV --version 7.0.0
NuGet\Install-Package Woof.Settings.AKV -Version 7.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Woof.Settings.AKV" Version="7.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Woof.Settings.AKV --version 7.0.0
#r "nuget: Woof.Settings.AKV, 7.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Woof.Settings.AKV as a Cake Addin
#addin nuget:?package=Woof.Settings.AKV&version=7.0.0

// Install Woof.Settings.AKV as a Cake Tool
#tool nuget:?package=Woof.Settings.AKV&version=7.0.0

Woog.Settings.AKV

A part of the Woof Tookit by CodeDog.

Distributed under MIT License. (c)2022 by CodeDog, All rights reserved.


About

An extension of the Woof.Settings package that allows some settings values to be not read directly from JSON file, but from the Azure Key Vault secrets.

This achieves following important goals:

  • sensitive data are not distributed with the program or its configuration,
  • the access to the vault secrets can be revoked at any time,
  • the data can be changed remotely at any time,
  • the access to the vault can be limited to the configured end points,
  • the access to the data from the code is trivial,
  • the AKV configuration is trivial,
  • sensitive data stored by the application can be easily encrypted and decrypted using a key stored remotely on AKV.

Security considerations:

Anyone having the appropriate .access.json file can access vault secretes. That file CANNOT be made public or accessible to anyone but intended user.

To mitigate the vulnerability additional steps must be taken.

In order not to store that sensitive file in plain text, the data protection service is used.

Windows systems have such service built in that allows to encrypt the sensitive data with either the user's private key, or the machine private key.

The data can be decrypted only by that user, or on the same machine.

On Linux systems there is .NET support for data protection, but the keys must be created and managed by the application.

The keys are also sensitive data that must not be accessible for unauthorized users.

Usage

The user of this package should have an active Microsoft Azure subscription and some knowledge about what the Azure Key Vault is and how it works.

If the main application executable file is named test, then the AKV settings should be placed in test.access.json file.

It is referred as .access.json further.

The empty file should have following structure:

{
    "VaultUri": "",
    "DirectoryId": "",
    "ApplicationId": "",
    "ClientSecret": "",
    "CredentialsEncodingKeyName": ""
}

Azure Active Directory configuration

  • Click App registrations.
  • Click New registration.
  • Enter the name of the application.
  • Select support account types (not important here).
  • Click Register.
  • Copy Application ID to the .access.json file as ApplicationId.
  • Click Certificates and secrets.
  • Click New client secret.
  • Copy the generated secret to the .access.json file as ClientSecret

Azure Key Vault configuration

  • Create a new Key Vault.
  • Click Access policies.
  • Click Add access policy.
  • Select principal as the application registered in previous step.
  • Add Get Sercret Permission.
  • From Overview section copy Vault Uri and Directory ID to VaultUri and DirectoryId .access.json properties.
  • Click Secrets.
  • Click Generate/Import.
  • Enter the secret's name, referred later as CredentialsEncodingKey.
  • In Visual Studio C# Interactive window enter:
    Convert.ToBase64String(System.Security.Cryptography.Aes.Create().Key)
    
  • Copy the result to the clipboard.
  • Paste it as the secret's value in AKV panel.
  • Copy the CredentialsEncodingKey name to the CredentialsEncodingKeyName property of the .access.json file.

C# code

  • Create the program configuration as a record, for example:
    internal class Settings : JsonSettingsAkv<Settings> {
    
        public static Settings Default { get; } = new Settings();
    
        public string MyDirectValue { get; init; }
    
        [AKV("SecretName")]
        public string MySensitiveValue { get; init; }
    
    }
    
  • Create program configuration JSON, for example:
    {
        "myDirectValue": "test"
    }
    
  • Load the configuration like this:
    await Settings.Default.LoadAsync();
    
  • If the secret with name "SecretName" is created in AKV, its value can be accessed as Settings.Default.MySensitiveValue.
  • If anything is done wrong, an exception will be thrown or the values will be null.

For advanced features like credentials encryption see the demo provided. Also read the documentation of the Woof.Settings, Woof.DataProtection and Woof.DataProtection.Linux.


Disclaimer

Woof Toolkit is a work in progress in constant development, however it's carefully maintained with production code quality.

PLEASE report all issues on GitHub!

Describe how to reproduce an issue. Also feel free to suggest new features or improvements.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
7.0.0 164 8/6/2023
6.2.0 238 2/20/2022

.NET7 target.