File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 11import * as pulumi from '@pulumi/pulumi' ;
22import { deployApp } from './services/app' ;
3+ import { deployAWSArtifactsLambdaFunction } from './services/aws-artifacts-lambda-function' ;
34import { deployCFBroker } from './services/cf-broker' ;
45import { deployCFCDN } from './services/cf-cdn' ;
56import { deployClickhouse } from './services/clickhouse' ;
@@ -89,6 +90,11 @@ const cdn = deployCFCDN({
8990 environment,
9091} ) ;
9192
93+ const lambdaFunction = deployAWSArtifactsLambdaFunction ( {
94+ s3Mirror,
95+ environment,
96+ } ) ;
97+
9298const broker = deployCFBroker ( {
9399 environment,
94100 sentry,
@@ -346,3 +352,4 @@ export const webhooksApiServiceId = webhooks.service.id;
346352export const appId = app . deployment . id ;
347353export const otelCollectorId = otelCollector . deployment . id ;
348354export const publicIp = proxy . get ( ) ! . status . loadBalancer . ingress [ 0 ] . ip ;
355+ export const awsLambdaArtifactsFunctionUrl = lambdaFunction ;
You can’t perform that action at this time.
0 commit comments