diff --git a/src/shared/key-management/aws/checker.ts b/src/shared/key-management/aws/checker.ts index 568b402..8604b42 100644 --- a/src/shared/key-management/aws/checker.ts +++ b/src/shared/key-management/aws/checker.ts @@ -92,6 +92,8 @@ export class AwsKeyChecker extends KeyCheckerBase { protected async testKeyOrFail(key: AwsBedrockKey) { const isInitialCheck = !key.lastChecked; + // Keys with logging enabled will get rejected in the provider + await this.checkLoggingConfiguration(key); if (isInitialCheck) { try { await this.checkInferenceProfiles(key);