diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/EnvironmentVariableNames.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/EnvironmentVariableNames.cs
index 345cb43453f..d825e5daeb0 100644
--- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/EnvironmentVariableNames.cs
+++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/EnvironmentVariableNames.cs
@@ -74,5 +74,20 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
/// Specifies the location of the diagnostic directory.
///
public const string DiagnosticDir = "CODEQL_EXTRACTOR_CSHARP_DIAGNOSTIC_DIR";
+
+ ///
+ /// Specifies the hostname of the Dependabot proxy.
+ ///
+ public const string ProxyHost = "CODEQL_PROXY_HOST";
+
+ ///
+ /// Specifies the hostname of the Dependabot proxy.
+ ///
+ public const string ProxyPort = "CODEQL_PROXY_PORT";
+
+ ///
+ /// Contains the certificate used by the Dependabot proxy.
+ ///
+ public const string ProxyCertificate = "CODEQL_PROXY_CA_CERTIFICATE";
}
}