Added missing config entries
Starting server with sample.yml throws errors because of missing elements in config - not just empty ones
This commit is contained in:
parent
6a6555e2d5
commit
5b404095b0
|
@ -94,6 +94,10 @@ deletedAccountsDynamoDb: # DynamoDb table configuration
|
||||||
tableName:
|
tableName:
|
||||||
needsReconciliationIndexName:
|
needsReconciliationIndexName:
|
||||||
|
|
||||||
|
deletedAccountsLockDynamoDb: # DynamoDb table configuration
|
||||||
|
region:
|
||||||
|
tableName:
|
||||||
|
|
||||||
migrationDeletedAccountsDynamoDb: # DynamoDB table configuration
|
migrationDeletedAccountsDynamoDb: # DynamoDB table configuration
|
||||||
region:
|
region:
|
||||||
tableName:
|
tableName:
|
||||||
|
@ -102,6 +106,14 @@ migrationRetryAccountsDynamoDb: # DynamoDB table configuration
|
||||||
region:
|
region:
|
||||||
tableName:
|
tableName:
|
||||||
|
|
||||||
|
pendingAccountsDynamoDb: # DynamoDB table configuration
|
||||||
|
region:
|
||||||
|
tableName:
|
||||||
|
|
||||||
|
pendingDevicesDynamoDb: # DynamoDB table configuration
|
||||||
|
region:
|
||||||
|
tableName:
|
||||||
|
|
||||||
pushChallengeDynamoDb: # DynamoDB table configuration
|
pushChallengeDynamoDb: # DynamoDB table configuration
|
||||||
region:
|
region:
|
||||||
tableName:
|
tableName:
|
||||||
|
@ -177,6 +189,12 @@ voiceVerification:
|
||||||
recaptcha:
|
recaptcha:
|
||||||
secret:
|
secret:
|
||||||
|
|
||||||
|
recaptchaV2:
|
||||||
|
siteKey:
|
||||||
|
scoreFloor:
|
||||||
|
projectPath:
|
||||||
|
credentialConfigurationJson:
|
||||||
|
|
||||||
storageService:
|
storageService:
|
||||||
uri:
|
uri:
|
||||||
userAuthenticationTokenSharedSecret:
|
userAuthenticationTokenSharedSecret:
|
||||||
|
@ -208,6 +226,9 @@ remoteConfig:
|
||||||
|
|
||||||
paymentsService:
|
paymentsService:
|
||||||
userAuthenticationTokenSharedSecret: # hex-encoded 32-byte secret shared with MobileCoin services used to generate auth tokens for Signal users
|
userAuthenticationTokenSharedSecret: # hex-encoded 32-byte secret shared with MobileCoin services used to generate auth tokens for Signal users
|
||||||
|
fixerApiKey:
|
||||||
|
paymentCurrencies:
|
||||||
|
-
|
||||||
|
|
||||||
torExitNodeList:
|
torExitNodeList:
|
||||||
s3Region:
|
s3Region:
|
||||||
|
|
Loading…
Reference in New Issue