cdk/lib/identity-gateway.ts (12 lines of code) (raw):
import type { GuStackProps } from '@guardian/cdk/lib/constructs/core';
import { GuStack } from '@guardian/cdk/lib/constructs/core';
import type { App } from 'aws-cdk-lib';
import { CfnInclude } from 'aws-cdk-lib/cloudformation-include';
export class IdentityGateway extends GuStack {
constructor(scope: App, id: string, props: GuStackProps) {
super(scope, id, props);
new CfnInclude(this, 'IdentityGateway', {
templateFile: '../cloudformation.yaml',
});
}
}