/** * TL-PERM-004 - ECS task execution role missing secret access permissions. * * Container Secrets[].ValueFrom entries are resolved by the ECS agent using * the task EXECUTION role (not the task role). Missing access is * deterministic breakage: the container fails to start with a * ResourceInitializationError. */ import type { AnalysisResults, CloudFormationStack, CreateFindingFunction } from '../../../../types/analysis.types'; export declare const checkEcsSecretsMissingPermissions: (template: CloudFormationStack, createFinding: CreateFindingFunction) => AnalysisResults;