Created
January 1, 2019 19:27
-
-
Save DCCoder90/ddc573c44a7481229f826995ff44c34b to your computer and use it in GitHub Desktop.
Working with AWS Secret Manager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var awsCredentials = new BasicAWSCredentials("someaccesskey", "somesecretkey"); | |
var secretManager = new SecretManager(awsCredentials); | |
secretManager.StoreSecret("somesecretKey","mysecret","Just some test secret I wanted to try"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment