mirror of
https://github.com/google/nomulus
synced 2026-01-03 19:54:18 +00:00
Add configurable escrow file import GCS bucket
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=123760355
This commit is contained in:
committed by
Ben McIlwain
parent
23b66b0bb4
commit
c83a0c4d95
@@ -91,6 +91,11 @@ public interface RegistryConfig {
|
||||
*/
|
||||
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.
|
||||
*
|
||||
|
||||
@@ -67,6 +67,11 @@ public class TestRegistryConfig implements RegistryConfig {
|
||||
return getProjectId() + "-zonefiles";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getEscrowFileImportBucket() {
|
||||
return getProjectId() + "-escrow-import";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean getTmchCaTestingMode() {
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user