/** * WAW031: EKS Addon Missing ServiceAccountRoleArn * * Certain EKS addons require a ServiceAccountRoleArn (IRSA role) to function. * Without one, the addon pods can't authenticate to AWS APIs and the addon * hangs in CREATING status indefinitely. * * Known addons that require IRSA: * - aws-ebs-csi-driver (needs EBS API access) * - aws-efs-csi-driver (needs EFS API access) * - adot (needs CloudWatch/X-Ray access) * - amazon-cloudwatch-observability (needs CloudWatch access) */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkAddonMissingRole(ctx: PostSynthContext): PostSynthDiagnostic[]; export declare const waw031: PostSynthCheck; //# sourceMappingURL=waw031.d.ts.map