Skip to content

Instantly share code, notes, and snippets.

@tommyshiou
Created August 23, 2019 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommyshiou/03dc7a5025ef4abbb5c78257d5b8fd17 to your computer and use it in GitHub Desktop.
Save tommyshiou/03dc7a5025ef4abbb5c78257d5b8fd17 to your computer and use it in GitHub Desktop.
AWSManagedSecret annotation example
public class ExampleClass {
@Inject @AwsManagedSecret("credentials/mydb/readonly-user")
Secret<Credentials> myDbReadonlyCredentials;
public void readDataFromDb() {
String password = myDbReadonlyCredentials.getSecretValue().getPassword()
// Use password to set up connection
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment