Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active April 5, 2018 23:47
Embed
What would you like to do?
public void ConfigureServices(IServiceCollection services)
{
services.AddDataProtection()
.PersistKeysToAwsS3(new AmazonS3Client(), new S3XmlRepositoryConfig("bucketName")
{
KeyPrefix = "DataProtectionKeys/",
});
services.AddMvc();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment