You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: crates/infisical/src/client/client_settings.rs
+7
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,12 @@ pub struct ClientSettings {
36
36
pubcache_ttl:Option<u64>,
37
37
pubuser_agent:Option<String>,// We use this to identity which SDK/language was used to make a request.
38
38
39
+
#[schemars(
40
+
description = "The SSL certificate path is an optional field that allows you to specify a custom SSL certificate to use for requests made to Infisical.
41
+
This option can be substituted with the `INFISICAL_SSL_CERTIFICATE` environment variable, which should contain the certificate as a string, not the path."
42
+
)]
43
+
pubssl_certificate_path:Option<String>,// Path to the SSL certificate file.
44
+
39
45
#[schemars(
40
46
description = "Configure the authentication method to use.\n\nMake sure to only set one one method at a time to avoid conflicts and unexpected behavior."
0 commit comments