Stormancer.Server.Plugins.Aws 0.1.1-pre

This is a prerelease version of Stormancer.Server.Plugins.Aws.
dotnet add package Stormancer.Server.Plugins.Aws --version 0.1.1-pre
                    
NuGet\Install-Package Stormancer.Server.Plugins.Aws -Version 0.1.1-pre
                    
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="Stormancer.Server.Plugins.Aws" Version="0.1.1-pre" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stormancer.Server.Plugins.Aws" Version="0.1.1-pre" />
                    
Directory.Packages.props
<PackageReference Include="Stormancer.Server.Plugins.Aws" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Stormancer.Server.Plugins.Aws --version 0.1.1-pre
                    
#r "nuget: Stormancer.Server.Plugins.Aws, 0.1.1-pre"
                    
#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.
#:package Stormancer.Server.Plugins.Aws@0.1.1-pre
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Stormancer.Server.Plugins.Aws&version=0.1.1-pre&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Stormancer.Server.Plugins.Aws&version=0.1.1-pre&prerelease
                    
Install as a Cake Tool

Azure application support.

This plugin provides integration with AWS features for Stormancer applications

Blob storage

Declare S3 blob storage based storage backends for use with the Stormancer.Server.Plugins.BlobStorage plugin.

Configuration:

{
    "storage":{
        "blobStores":{
            "my-s3-storage":{
                
                //must be set to "s3" to use the Azure plugin.
                "type":"azureBlob",
                
                //The S3 bucket to use for blob storage.
                "bucket":"my-bucket",

                //The AWS region to use for S3 storage.
                "region":"us-east-1",

                //One of the following must be set to true to specify how to authenticate with S3. If all are set to false, the corresponding backend will be disabled.
                //If set to true, the plugin will use the default AWS credentials provider chain to authenticate with S3.
                "useDefaultCredentials":true,

                //If set to true, the plugin will use the accessKey and secretKey to authenticate with S3.
                "useAccessKey":false,
                
                //The access key to use to authenticate with S3. Only used if useAccessKey is set to true.
                "accessKeyId":"my-access-key",

                // The access secret key is stored in the cluster secret store.
                "accessKeySecretPath":"{account}/{secretStoreName}/{accessKeySecret}" 

            }
        }
    }
}
Product 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 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
0.1.1-pre 57 8/5/2026
0.1.0-pre 56 7/29/2026

Added
*****
- Added S3 blob storage integration for `Stormancer.Server.Plugins.BlobStorage`.