aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/configuration.md')
-rw-r--r--docs/configuration.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index 08392c3918..12ac601296 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -1430,6 +1430,7 @@ Apart from these, the following properties are also available, and may be useful
The reference list of protocols one can find on
<a href="https://blogs.oracle.com/java-platform-group/entry/diagnosing_tls_ssl_and_https">this</a>
page.
+ Note: If not set, it will use the default cipher suites of JVM.
</td>
</tr>
<tr>
@@ -1455,6 +1456,13 @@ Apart from these, the following properties are also available, and may be useful
</td>
</tr>
<tr>
+ <td><code>spark.ssl.keyStoreType</code></td>
+ <td>JKS</td>
+ <td>
+ The type of the key-store.
+ </td>
+ </tr>
+ <tr>
<td><code>spark.ssl.protocol</code></td>
<td>None</td>
<td>
@@ -1464,6 +1472,13 @@ Apart from these, the following properties are also available, and may be useful
</td>
</tr>
<tr>
+ <td><code>spark.ssl.needClientAuth</code></td>
+ <td>false</td>
+ <td>
+ Set true if SSL needs client authentication.
+ </td>
+ </tr>
+ <tr>
<td><code>spark.ssl.trustStore</code></td>
<td>None</td>
<td>
@@ -1478,6 +1493,13 @@ Apart from these, the following properties are also available, and may be useful
A password to the trust-store.
</td>
</tr>
+ <tr>
+ <td><code>spark.ssl.trustStoreType</code></td>
+ <td>JKS</td>
+ <td>
+ The type of the trust-store.
+ </td>
+ </tr>
</table>