-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support TLS minVersion and maxVersion in opa server so that it can disable TLS 1.0 and 1.1 #3226
Comments
That's a great idea. Thanks for bringing it up. |
We could also default to denying 1.0 and 1.1 unless configured otherwise. What's the use of a max version here? I'm not sure i understand the situation where you'd want to restrict the upper bound 🤔 |
@srenatus @anderseknert is this something that I can take up ? |
@kale-amruta I don't see why not 😃 As @srenatus said I don't know if a max version is really needed, but a new |
Opa server now supports min TLS version, TLS versions supported are 1.0, 1.1, 1.2, 1.3. Since TLS 1.0 and 1.1 are deprecated, default min TLS version for opa is TLS 1.2 but if someone wants to restrict opa to use a specific minimum TLS version, they can specify it using cmd parameter --min-tls-version fixes open-policy-agent#3226 Signed-off-by: Amruta Kale <[email protected]>
* Support for minimum TLS version OPA server now supports min TLS version, TLS versions supported are 1.0, 1.1, 1.2, 1.3. Since TLS 1.0 and 1.1 are deprecated, default min TLS version for OPA is TLS 1.2 but if someone wants to restrict OPA to use a specific minimum TLS version, they can specify it using cmd parameter `--min-tls-version`. Fixes #3226. Signed-off-by: Amruta Kale <[email protected]>
…y-agent#3517) * Support for minimum TLS version OPA server now supports min TLS version, TLS versions supported are 1.0, 1.1, 1.2, 1.3. Since TLS 1.0 and 1.1 are deprecated, default min TLS version for OPA is TLS 1.2 but if someone wants to restrict OPA to use a specific minimum TLS version, they can specify it using cmd parameter `--min-tls-version`. Fixes open-policy-agent#3226. Signed-off-by: Amruta Kale <[email protected]>
Expected Behavior
OPA server should allow to disable TLS 1.0 and 1.1 by either configuration or argument.
Actual Behavior
HTTPS server supports the TLS minVersion and maxVersion, but opa server doesn't expose them in arguments or configuration.
Steps to Reproduce the Problem
Any OPA version.
Additional Info
The text was updated successfully, but these errors were encountered: