OLT.Extensions.Configuration.Infisical
9.0.0
Prefix Reserved
dotnet add package OLT.Extensions.Configuration.Infisical --version 9.0.0
NuGet\Install-Package OLT.Extensions.Configuration.Infisical -Version 9.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="OLT.Extensions.Configuration.Infisical" Version="9.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OLT.Extensions.Configuration.Infisical --version 9.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: OLT.Extensions.Configuration.Infisical, 9.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 OLT.Extensions.Configuration.Infisical as a Cake Addin #addin nuget:?package=OLT.Extensions.Configuration.Infisical&version=9.0.0 // Install OLT.Extensions.Configuration.Infisical as a Cake Tool #tool nuget:?package=OLT.Extensions.Configuration.Infisical&version=9.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
.NET Configuration Extensions for Infisical
OLT.Extensions.Configuration.Infisical is a configuration provider for the .NET Core that allows developers to use Infisical as a configuration source in their applications.
Install the package:
dotnet add package OLT.Extensions.Configuration.Infisical
Simple
using OLT.Extensions.Configuration.Infisical;
var builder = WebApplication.CreateBuilder(args);
builder.Configuration
.SetBasePath(builder.Environment.ContentRootPath)
.AddInfisical(options, "e2bcf5b2-0000-0000-0000-000000009876", "---ClientSecret---", "47c230b4-0000-0000-0000-000000001234", "prod", false, TimeSpan.FromMinutes(10));
Load all secrets and all subfolders
using OLT.Extensions.Configuration.Infisical;
var options = new InfisicalOptions
{
ClientId = "e2bcf5b2-0000-0000-0000-000000009876",
ClientSecret = "---ClientSecret---",
ProjectId = "47c230b4-0000-0000-0000-000000001234",
Environment = "dev",
Recursive = true
};
var builder = WebApplication.CreateBuilder(args);
builder.Configuration
.SetBasePath(builder.Environment.ContentRootPath)
.AddInfisical(options, false, TimeSpan.FromMinutes(10));
Using Paths
using OLT.Extensions.Configuration.Infisical;
var sharedOptions = new InfisicalOptions
{
ClientId = "e2bcf5b2-0000-0000-0000-000000009876",
ClientSecret = "---ClientSecret---",
ProjectId = "47c230b4-0000-0000-0000-000000001234",
Environment = "staging",
Path = "/Shared"
Recursive = true
};
builder.AddInfisical(sharedOptions, true, TimeSpan.FromMinutes(10));
var appOptions = new InfisicalOptions
{
ClientId = "e2bcf5b2-0000-0000-0000-000000009876",
ClientSecret = "---ClientSecret---",
ProjectId = "47c230b4-0000-0000-0000-000000001234",
Environment = "staging",
Path = "/App1"
};
builder.Configuration
.SetBasePath(builder.Environment.ContentRootPath)
.AddInfisical(appOptions, false, TimeSpan.FromMinutes(10));
Build Infisical Options from Connection String
using OLT.Extensions.Configuration.Infisical;
var sharedOptions = new InfisicalOptions
{
ClientId = "e2bcf5b2-0000-0000-0000-000000009876",
ClientSecret = "---ClientSecret---",
ProjectId = "47c230b4-0000-0000-0000-000000001234",
Environment = "staging",
Path = "/Shared"
Recursive = true
};
builder.AddInfisical(sharedOptions, true, TimeSpan.FromMinutes(10));
var appOptions = new InfisicalOptions
{
ClientId = "e2bcf5b2-0000-0000-0000-000000009876",
ClientSecret = "---ClientSecret---",
ProjectId = "47c230b4-0000-0000-0000-000000001234",
Environment = "staging",
Path = "/App1"
};
builder.Configuration
.SetBasePath(builder.Environment.ContentRootPath)
.AddInfisical(appOptions, false, TimeSpan.FromMinutes(10));
To use JSON namespacing, the keys of the secrets need to include ":" to represent nested keys and uncheck the Auto Capitalization under project settings.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. net9.0 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Infisical.Sdk (>= 2.3.7)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
- System.Text.Json (>= 8.0.5)
-
net9.0
- Infisical.Sdk (>= 2.3.7)
- Microsoft.Extensions.Configuration (>= 9.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
- System.Text.Json (>= 9.0.0)
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 |
---|---|---|
9.0.0 | 74 | 11/12/2024 |
8.0.1 | 151 | 10/18/2024 |
8.0.0 | 320 | 8/20/2024 |
8.0.0-beta-0005 | 107 | 8/19/2024 |