constructor()

in lib/starter-construct/index.ts [8:27]


    constructor(scope: cdk.Construct, id: string) {
        super(scope, id);

        // Onboard teams as necessary - import lib/teams
        const teams: Array<ssp.Team> = [

        ];

        // Include more addons as necessary
        const addOns: Array<ssp.ClusterAddOn> = [
            new ssp.ArgoCDAddOn
        ];

        const stackID = `${id}-blueprint`
        new ssp.EksBlueprint(scope, { id: stackID, addOns, teams }, {
            env: {
                region: 'us-east-2',
            },
        });
    }