mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-22 21:05:23 +00:00
JDBC client can only be configured for SSL with keystores, but we can't use JKS/PKCS12 keystores in FIPS 140-2 mode. Resolves: #66095
This commit is contained in:
parent
40c99e56c3
commit
2fd049cda7
@ -1,3 +1,5 @@
|
||||
import org.elasticsearch.gradle.info.BuildParams
|
||||
|
||||
apply plugin: 'elasticsearch.test-with-ssl'
|
||||
|
||||
testClusters.all {
|
||||
@ -6,3 +8,8 @@ testClusters.all {
|
||||
setting 'xpack.security.http.ssl.enabled', 'true'
|
||||
setting 'xpack.security.transport.ssl.enabled', 'true'
|
||||
}
|
||||
|
||||
// JDBC client can only be configured for SSL with keystores, but we can't use JKS/PKCS12 keystores in FIPS 140-2 mode.
|
||||
tasks.withType(Test).configureEach {
|
||||
onlyIf { BuildParams.inFipsJvm == false}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user