blob: a503d011bbccff404005c1e642a0951b073c139a [file]
# SPDX-License-Identifier: Apache-2.0
my-dynamodb-journal = ${dynamodb-journal}
my-dynamodb-journal {
journal-table = "test-journal"
journal-name = "journal"
endpoint = "http://localhost:8888"
aws-access-key-id = "AWS_ACCESS_KEY_ID"
aws-secret-access-key = "AWS_SECRET_ACCESS_KEY"
tracing = off
fixes.high-distrust = true
}
my-dynamodb-snapshot-store = ${dynamodb-snapshot-store}
my-dynamodb-snapshot-store {
snapshot-table = "test-snapshot"
endpoint = "http://localhost:8888"
aws-access-key-id = "AWS_ACCESS_KEY_ID"
aws-secret-access-key = "AWS_SECRET_ACCESS_KEY"
tracing = off
}
pekko {
actor {
allow-java-serialization = on
}
persistence {
journal.plugin = "my-dynamodb-journal"
snapshot-store.plugin = "my-dynamodb-snapshot-store"
publish-confirmations = on
publish-plugin-commands = on
}
loggers = ["org.apache.pekko.testkit.TestEventListener"]
loglevel = INFO
}
dynamodb-read-journal {
persistence-ids-index-name: "my-persistence-ids-idx"
journal-table = "test-journal"
endpoint = "http://localhost:8888"
aws-access-key-id = "AWS_ACCESS_KEY_ID"
aws-secret-access-key = "AWS_SECRET_ACCESS_KEY"
}