From 74b4d7b5c68f47f4eb4f7b9fac2e8cc2175a796d Mon Sep 17 00:00:00 2001 From: Kevin Albertson Date: Tue, 25 Nov 2025 13:20:51 -0500 Subject: [PATCH] RUST-2303 extend `ALLOWED_HOSTS` Add `*.mongo.com` --- driver/src/client/auth/oidc.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/driver/src/client/auth/oidc.rs b/driver/src/client/auth/oidc.rs index 3b5505a5c..39b6003e9 100644 --- a/driver/src/client/auth/oidc.rs +++ b/driver/src/client/auth/oidc.rs @@ -57,6 +57,7 @@ const DEFAULT_ALLOWED_HOSTS: &[&str] = &[ "localhost", "127.0.0.1", "::1", + "*.mongo.com", ]; /// The callback to use for OIDC authentication.