/** * WAW044: ALB HTTP Listener Not Redirecting To HTTPS (full tier) * * Flags load balancer Listener resources on Protocol: HTTP whose * DefaultActions don't redirect to HTTPS — the listener serves plaintext * traffic instead of upgrading it. Access logging is WAW024; this covers * transport security on the listener itself. * * Tier-aware (#917), same seam as WAW040/WAW052 (#894): a relaxed "light" * stack (local/Floci, or no --env/ownership.env set) only warns, since the * light tier is intentionally HTTP-only with no ACM cert to redirect to; the * strict "full"/production tier (ctx.env === "prod"/"production"/"full", the * existing #201 env seam — see isFullTierEnv) fails the build. */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkAlbHttpRedirect(ctx: PostSynthContext): PostSynthDiagnostic[]; export declare const waw044: PostSynthCheck; //# sourceMappingURL=waw044.d.ts.map