/** * The fixed-name cross-account monitoring role, shared by producer and * consumer: * * - Producer (`@fjall/components-infrastructure`): `AccountMonitoringRole` * (`config/aws/accountMonitoringRole.ts`) creates the role under this * name — the only resource the account-globals branch creates * unconditionally (`patterns/aws/account.ts`). * - Consumer (`@fjall/deploy-core`): `accountGlobals.ts` probes the role by * name (IAM GetRole) — its presence IS "account globals deployed", the * prerequisite for a non-primary-region deploy. * * The literal is deployed infrastructure state — the platform assumes this * exact name in every connected account, so a rename strands existing * estates. The pin test in `__tests__/monitoringRole.test.ts` guards * against casual renames. */ export declare const ACCOUNT_MONITORING_ROLE_NAME = "FjallMonitoring";