From 164627139e4e257b1b010977d1e55b537c092262 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Tue, 30 Jul 2024 22:24:23 +0200 Subject: [PATCH] TLS docs --- docs/sdks/languages/csharp.mdx | 5 +++++ docs/sdks/languages/java.mdx | 4 ++++ docs/sdks/languages/node.mdx | 4 ++++ docs/sdks/languages/python.mdx | 12 +++++------- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/docs/sdks/languages/csharp.mdx b/docs/sdks/languages/csharp.mdx index 90351a986..281cf66b9 100644 --- a/docs/sdks/languages/csharp.mdx +++ b/docs/sdks/languages/csharp.mdx @@ -118,6 +118,11 @@ namespace Example Your self-hosted absolute site URL including the protocol (e.g. `https://app.infisical.com`) + + Optionally provide a path to a custom SSL certificate file. This can be substituted by setting the `INFISICAL_SSL_CERTIFICATE` environment variable to the contents of the certificate. + + + The authentication object to use for the client. This is required unless you're using environment variables. diff --git a/docs/sdks/languages/java.mdx b/docs/sdks/languages/java.mdx index 879bfa624..e79e34389 100644 --- a/docs/sdks/languages/java.mdx +++ b/docs/sdks/languages/java.mdx @@ -122,6 +122,10 @@ public class App { Your self-hosted absolute site URL including the protocol (e.g. `https://app.infisical.com`) + + Optionally provide a path to a custom SSL certificate file. This can be substituted by setting the `INFISICAL_SSL_CERTIFICATE` environment variable to the contents of the certificate. + + The authentication object to use for the client. This is required unless you're using environment variables. diff --git a/docs/sdks/languages/node.mdx b/docs/sdks/languages/node.mdx index 1546451b8..670fed4da 100644 --- a/docs/sdks/languages/node.mdx +++ b/docs/sdks/languages/node.mdx @@ -137,6 +137,10 @@ Import the SDK and create a client instance with your [Machine Identity](/docume The level of logs you wish to log The logs are derived from Rust, as we have written our base SDK in Rust. + + Optionally provide a path to a custom SSL certificate file. This can be substituted by setting the `INFISICAL_SSL_CERTIFICATE` environment variable to the contents of the certificate. + + The authentication object to use for the client. This is required unless you're using environment variables. diff --git a/docs/sdks/languages/python.mdx b/docs/sdks/languages/python.mdx index d9ab49688..83d249dde 100644 --- a/docs/sdks/languages/python.mdx +++ b/docs/sdks/languages/python.mdx @@ -97,16 +97,14 @@ client = InfisicalClient(ClientSettings( If manually set to 0, caching will be disabled, this is not recommended. - - + Your self-hosted absolute site URL including the protocol (e.g. `https://app.infisical.com`) + + Optionally provide a path to a custom SSL certificate file. This can be substituted by setting the `INFISICAL_SSL_CERTIFICATE` environment variable to the contents of the certificate. + + The authentication object to use for the client. This is required unless you're using environment variables.