shapirov103 / cdk-eks-blueprint

repo for CDK Software Factory
Apache License 2.0
11 stars 2 forks source link

Export all addons as a single module #32

Open kcoleman731 opened 3 years ago

kcoleman731 commented 3 years ago

To allow for less verbose code, export all addons as a single module. This allows us to do this

import {   CdkEksBlueprintStack, addons } from '@shapirov/cdk-eks-blueprint'

instead of this

import {
    CdkEksBlueprintStack, 
    ArgoCDAddOn
    MetricsServerAddon, 
    ClusterAutoScaler, 
    ContainerInsightsAddOn, 
    NginxAddon, 
    CalicoNetworkPolicyAddon, 
}  from '@shapirov/cdk-eks-blueprint';