Skip to content

Commit

Permalink
Merge pull request #141 from xschildw/dev-plfm3921
Browse files Browse the repository at this point in the history
Dev plfm3921
  • Loading branch information
brucehoff committed Jun 19, 2016
2 parents 43c3a8a + d26bd12 commit 6f93167
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/org/sagebionetworks/stack/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ public class Constants {
public static final String KEY_ORG_SAGEBIONETWORKS_CLOUDMAILIN_PW_PLAINTEXT = "org.sagebionetworks.email.cloudmailin.password.plaintext";
public static final String KEY_ORG_SAGEBIONETWORKS_OAUTH2_ORCID_CLIENT_ID="org.sagebionetworks.oauth2.orcid.client.id";
public static final String KEY_ORG_SAGEBIONETWORKS_OAUTH2_ORCID_CLIENT_SECRET="org.sagebionetworks.oauth2.orcid.client.secret.plaintext";
public static final String KEY_ORG_SAGEBIONETWORKS_DOCKER_AUTHORIZATION_PRIVATE_KEY_PLAINTEXT="org.sagebionetworks.docker.authorization.private.key.plaintext";
public static final String KEY_ORG_SAGEBIONETWORKS_DOCKER_AUTHORIZATION_CERTIFICATE="org.sagebionetworks.docker.authorization.certificate";


public static final String KEY_ORG_SAGEBIONETWORKS_PORTAL_ACM_CERT_ARN="org.sagebionetworks.PORTAL.acm.certificate.arn";
public static final String KEY_ORG_SAGEBIONETWORKS_REPO_ACM_CERT_ARN="org.sagebionetworks.REPO.acm.certificate.arn";
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/stack-config-template.properties
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,7 @@ org.sagebionetworks.notification.email.address=${org.sagebionetworks.notificatio
#CloudMailIn
org.sagebionetworks.email.cloudmailin.user = ${org.sagebionetworks.email.cloudmailin.user.encrypted}
org.sagebionetworks.email.cloudmailin.password = ${org.sagebionetworks.email.cloudmailin.password.encrypted}

#Docker
org.sagebionetworks.docker.authorization.private.key=${org.sagebionetworks.docker.authorization.private.key.encrypted}
org.sagebionetworks.docker.authorization.certificate=${org.sagebionetworks.docker.authorization.certificate}
2 changes: 2 additions & 0 deletions src/test/java/org/sagebionetworks/stack/TestHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ public static Properties createDefaultProperties() {
defaults.put(KEY_ORG_SAGEBIONETWORKS_CLOUDMAILIN_PW_PLAINTEXT, "cloudmailinpwd");
defaults.put(KEY_ORG_SAGEBIONETWORKS_OAUTH2_ORCID_CLIENT_ID, "oauth2orcidid");
defaults.put(KEY_ORG_SAGEBIONETWORKS_OAUTH2_ORCID_CLIENT_SECRET, "oauth2orcidsecret");
defaults.put(KEY_ORG_SAGEBIONETWORKS_DOCKER_AUTHORIZATION_PRIVATE_KEY_PLAINTEXT, "privateKey");
defaults.put(KEY_ORG_SAGEBIONETWORKS_DOCKER_AUTHORIZATION_CERTIFICATE, "certificate");

return defaults;
}
Expand Down

0 comments on commit 6f93167

Please sign in to comment.