Add configurable escrow file import GCS bucket

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=123760355
This commit is contained in:
Wolfgang Meyers 2016-06-01 09:24:13 -07:00 committed by Ben McIlwain
parent 23b66b0bb4
commit c83a0c4d95
2 changed files with 10 additions and 0 deletions

View file

@ -91,6 +91,11 @@ public interface RegistryConfig {
*/ */
public String getZoneFilesBucket(); public String getZoneFilesBucket();
/**
* Returns the Google Cloud Storage bucket for importing escrow files.
*/
public String getEscrowFileImportBucket();
/** /**
* Returns {@code true} if TMCH certificate authority should be in testing mode. * Returns {@code true} if TMCH certificate authority should be in testing mode.
* *

View file

@ -67,6 +67,11 @@ public class TestRegistryConfig implements RegistryConfig {
return getProjectId() + "-zonefiles"; return getProjectId() + "-zonefiles";
} }
@Override
public String getEscrowFileImportBucket() {
return getProjectId() + "-escrow-import";
}
@Override @Override
public boolean getTmchCaTestingMode() { public boolean getTmchCaTestingMode() {
return true; return true;