in cdk/lib/pipeline-stack.ts [15:31]
constructor(scope: Construct, id: string, props?: StageProps) {
super(scope, id, props);
new PetTrackerDataIngestionStack(this, 'PetTrackerDataIngestion', {
env: {
region: props?.env?.region,
account: props?.env?.account
}
});
new PetTrackerWebAppStack(this, 'PetTrackerWebApp', {
env: {
region: props?.env?.region,
account: props?.env?.account
}
});
}