diff --git a/src/bpsets/ecs/ECSContainerInsightsEnabled.ts b/src/bpsets/ecs/ECSContainerInsightsEnabled.ts index edc429c..70e757f 100644 --- a/src/bpsets/ecs/ECSContainerInsightsEnabled.ts +++ b/src/bpsets/ecs/ECSContainerInsightsEnabled.ts @@ -81,6 +81,9 @@ export class ECSContainerInsightsEnabled implements BPSet { const clusters = await this.getClusters(); for (const cluster of clusters) { + if (cluster.clusterName === 'default') + continue + const containerInsightsSetting = cluster.settings?.find( (setting) => setting.name === 'containerInsights' );