/** * WAW046: ECS Secret-Looking Value In Plaintext Environment * * Flags ECS TaskDefinition container `Environment` entries whose name looks * like a credential (password/secret/token/key/credential) — those values are * visible in the task definition and console. They should be passed via * `Secrets` (Secrets Manager / SSM Parameter Store) instead. */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkEcsPlaintextSecrets(ctx: PostSynthContext): PostSynthDiagnostic[]; export declare const waw046: PostSynthCheck; //# sourceMappingURL=waw046.d.ts.map