@@ -2,6 +2,7 @@ import type { GuStackProps } from '@guardian/cdk/lib/constructs/core';
22import { App , Duration } from 'aws-cdk-lib' ;
33import 'source-map-support/register' ;
44import { FakeBreakingNewsLambda } from '../lib/fakebreakingnewslambda' ;
5+ import { FootballNotificationsLambda } from '../lib/footballnotificationslambda' ;
56import type { NotificationProps } from '../lib/notification' ;
67import { Notification } from '../lib/notification' ;
78import type { RegistrationProps } from '../lib/registration' ;
@@ -163,3 +164,25 @@ new FakeBreakingNewsLambda(
163164 'FakeBreakingNewsLambda-PROD' ,
164165 fakeBreakingNewsProdProps ,
165166) ;
167+
168+ export const footballNotificationsCodeProps : GuStackProps = {
169+ stack : 'mobile-notifications' ,
170+ stage : 'CODE' ,
171+ } ;
172+
173+ export const footballNotificationsProdProps : GuStackProps = {
174+ stack : 'mobile-notifications' ,
175+ stage : 'PROD' ,
176+ } ;
177+
178+ new FootballNotificationsLambda (
179+ app ,
180+ 'FootballNotificationsLambda-CODE' ,
181+ footballNotificationsCodeProps ,
182+ ) ;
183+
184+ new FootballNotificationsLambda (
185+ app ,
186+ 'FootballNotificationsLambda-PROD' ,
187+ footballNotificationsProdProps ,
188+ ) ;
0 commit comments