This is a Java based client library for Cerberus that is built on top of Nike's Cerberus client.
This library acts as a wrapper around the Nike developed Cerberus client by configuring the client to be Cerberus compatible.
To learn more about Cerberus, please see the Cerberus website.
As of spring 2021, JFrog has decided to sunset Bintray and JCenter. Due to this decision, we are pausing our open source publishing of the Cerberus Client. However, we will still be updating the source code and making new GitHub releases.
In order to build the jar yourself, run this command:
./gradlew assemble
The jar will be located in ./build/libs/
.
For any questions or concerns, create a Github issue here.
- Add the Cerberus client dependency to your build (e.g. Maven, Gradle).
- Access secrets from Cerberus using Java.
String cerberusUrl = "https://cerberus.example.com";
String region = "us-west-2";
CerberusClient cerberusClient = DefaultCerberusClientFactory.getClient(cerberusUrl, region);
Map<String,String> secrets = cerberusClient.read("/app/my-sdb-name").getData();
Check out "Working with AWS Credentials" for more information on how the AWS SDK for Java loads credentials.
Your IAM role or user needs to be added to any safe deposit box to be authorized to create a safe deposit box.
String cerberusUrl = "https://cerberus.example.com";
String region = "us-west-2";
CerberusClient cerberusClient = DefaultCerberusClientFactory.getClient(cerberusUrl, region);
String appCategoryId = cerberusClient.getCategoryIdByPath("app");
Map<CerberusRolePermission, String> rolePermissionMap = cerberusClient.getRolePermissionMap();
CerberusSafeDepositBoxResponse newSdb = cerberusClient.createSafeDepositBox(CerberusSafeDepositBoxRequest.newBuilder()
.withName("cerberus secrets")
.withOwner("very important user group")
.withCategoryId(appCategoryId)
.withRolePermissionMap(rolePermissionMap)
.withIamPrincipalPermission("arn:aws:iam::12345:role/ec2-role", OWNER)
.withUserGroupPermission("readonly group", READ)
.build());
Your IAM role or user needs to be the owner
of a safe deposit box to update it.
String cerberusUrl = "https://cerberus.example.com";
String region = "us-west-2";
CerberusClient cerberusClient = DefaultCerberusClientFactory.getClient(cerberusUrl, region);
Map<CerberusRolePermission, String> rolePermissionMap = cerberusClient.getRolePermissionMap();
CerberusSafeDepositBoxResponse sdb = cerberusClient.getSafeDepositBoxByName("cerberus secrets");
cerberusClient.updateSafeDepositBox(CerberusSafeDepositBoxRequest.newBuilder()
.withCerberusSafeDepositBoxResponse(sdb)
.withRolePermissionMap(rolePermissionMap)
.withIamPrincipalPermission("arn:aws:iam::12345:role/lambda-role", READ)
.build());
Your IAM role or user needs to be the owner
of a safe deposit box to delete it.
String cerberusUrl = "https://cerberus.example.com";
String region = "us-west-2";
CerberusClient cerberusClient = DefaultCerberusClientFactory.getClient(cerberusUrl, region);
Map<CerberusRolePermission, String> rolePermissionMap = cerberusClient.getRolePermissionMap();
CerberusSafeDepositBoxResponse sdb = cerberusClient.getSafeDepositBoxByName("cerberus secrets");
cerberusClient.deleteSafeDepositBox(sdb.getId());
First, make sure the following environment variables are set before running the Java Client integration tests:
export CERBERUS_ADDR=https://example.cerberus.com
export TEST_REGION=us-west-2
Then, make sure AWS credentials have been obtained. One method is by running gimme-aws-creds:
gimme-aws-creds
Next, in the project directory run:
./gradlew integration
Cerberus client is released under the Apache License, Version 2.0.