Skip to content

Commit 7bc71a7

Browse files
danielpaulusclaude
andcommitted
fix(ssl): align resolvedIp to the full string comparison set
resolvedIp allowed EQUALS/NOT_EQUALS/CONTAINS but not NOT_CONTAINS, diverging from the webapp/backend string value type. Use the shared STRING set for parity. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013AYwkvoaANQTH5dGStbBj2
1 parent caa6b3b commit 7bc71a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/src/constructs/ssl-assertion-validation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const connectionProperties: Record<string, PropertyRule> = {
5656
chainTrusted: { comparisons: BOOLEAN, booleanTarget: true },
5757
ocspStapled: { comparisons: BOOLEAN, booleanTarget: true },
5858
ocspStatus: { comparisons: ENUM },
59-
resolvedIp: { comparisons: { EQUALS: true, NOT_EQUALS: true, CONTAINS: true } },
59+
resolvedIp: { comparisons: STRING },
6060
}
6161

6262
// Keyed by the source union so adding a source without a rule fails to compile.

0 commit comments

Comments
 (0)