forked from storacha/w3infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreplicator-stack.js
87 lines (79 loc) · 2.23 KB
/
replicator-stack.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import {
Function,
Queue,
use
} from 'sst/constructs'
import { Duration, aws_events as awsEvents } from 'aws-cdk-lib'
import { BusStack } from './bus-stack.js'
import { setupSentry } from './config.js'
import { CARPARK_EVENT_BRIDGE_SOURCE_EVENT } from '../carpark/event-bus/source.js'
/**
* @param {import('sst/constructs').StackContext} properties
*/
export function ReplicatorStack({ stack, app }) {
// Setup app monitoring with Sentry
setupSentry(app, stack)
// Get Event Bus reference
const { eventBus } = use(BusStack)
// CAR replicator lambda
const carparkReplicatorHandler = new Function(
stack,
'carpark-replicator-handler',
{
environment: {
REPLICATOR_ACCESS_KEY_ID: process.env.R2_ACCESS_KEY_ID || '',
REPLICATOR_ENDPOINT: process.env.R2_ENDPOINT || '',
REPLICATOR_SECRET_ACCESS_KEY:
process.env.R2_SECRET_ACCESS_KEY || '',
REPLICATOR_BUCKET_NAME: process.env.R2_CARPARK_BUCKET_NAME || '',
},
permissions: ['s3:*'],
handler: 'replicator/functions/replicator.handler',
timeout: 15 * 60,
}
)
// Queues
const carReplicatorQueue = new Queue(stack, 'car-replicator-queue', {
consumer: {
function: carparkReplicatorHandler,
cdk: {
eventSource: {
batchSize: 1,
},
}
},
cdk: {
queue: {
// Needs to be set as less or equal than consumer function
visibilityTimeout: Duration.seconds(15 * 60),
},
},
})
// Event Bus Targets
const targetMessage = awsEvents.RuleTargetInput.fromObject({
bucketRegion: awsEvents.EventField.fromPath('$.detail.region'),
bucketName: awsEvents.EventField.fromPath('$.detail.bucketName'),
key: awsEvents.EventField.fromPath('$.detail.key')
})
/** @type {import('sst/constructs').EventBusQueueTargetProps} */
const carTargetReplicatorQueue = {
type: 'queue',
queue: carReplicatorQueue,
cdk: {
target: {
message: targetMessage,
},
}
}
// Replicate CARPARK, SATNAV AND UCAN write events
eventBus.addRules(stack, {
newCarToReplicate: {
pattern: {
source: [CARPARK_EVENT_BRIDGE_SOURCE_EVENT],
},
targets: {
carTargetReplicatorQueue
}
}
})
}