mirror of
https://github.com/outbackdingo/xmidt.git
synced 2026-01-27 10:20:52 +00:00
36 lines
1.6 KiB
YAML
36 lines
1.6 KiB
YAML
Local: # Environment name that can be passed on the command line
|
|
# (i.e.: ./goaws [Local | Dev] -- defaults to 'Local')
|
|
Host: goaws # hostname of the goaws system (for docker-compose this is the tag name of the container)
|
|
# you can now use either 1 port for both sns and sqs or alternatively you can comment out Port and use SqsPort + SnsPort for compatibilyt with
|
|
# yopa and (fage-sns + face-sqs). If both ways are in the config file on the one "Port" will be used by GoAws
|
|
Port: 4100 # port to listen on.
|
|
# SqsPort: 9324 # alterante Sqs Port
|
|
# SnsPort: 9292 # alternate Sns Port
|
|
Region: us-east-1
|
|
LogMessages: true # Log messages (true/false)
|
|
LogFile: ./goaws_messages.log # Log filename (for message logging
|
|
QueueAttributeDefaults: # default attributes for all queues
|
|
VisibilityTimeout: 30 # message visibility timeout
|
|
ReceiveMessageWaitTimeSeconds: 0 # receive message max wait time
|
|
Topics: # List of topic to create at startup
|
|
- Name: xmidt-local-caduceus # Topic name - no Subscriptions
|
|
|
|
Dev: # Another environment
|
|
Host: goaws
|
|
Port: 4100
|
|
# SqsPort: 9324
|
|
# SnsPort: 9292
|
|
LogMessages: true
|
|
LogFile: ./goaws_messages.log
|
|
Queues:
|
|
- Name: dev-queue1
|
|
- Name: dev-queue2
|
|
Topics:
|
|
- Name: dev-topic1
|
|
Subscriptions:
|
|
- QueueName: dev-queue3
|
|
Raw: false
|
|
- QueueName: dev-queue4
|
|
Raw: true
|
|
- Name: dev-topic2
|