mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 03:57:51 +02: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:
parent
23b66b0bb4
commit
c83a0c4d95
2 changed files with 10 additions and 0 deletions
|
@ -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.
|
||||||
*
|
*
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue