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
@@ -29,6 +29,66 @@ export class Kafka implements ICredentialType {
29
29
type: 'boolean',
30
30
default: true,
31
31
},
32
+
{
33
+
displayName: 'SSL CA',
34
+
name: 'sslCa',
35
+
type: 'string',
36
+
typeOptions: {
37
+
password: true,
38
+
},
39
+
displayOptions: {
40
+
show: {
41
+
ssl: [true],
42
+
},
43
+
},
44
+
default: '',
45
+
description: 'Cert chains in PEM format. One cert chain should be provided per private key. Each cert chain should consist of the PEM formatted certificate for a provided private key, followed by the PEM formatted intermediate certificates (if any), in order, and not including the root CA (the root CA must be pre-known to the peer, see ca). When providing multiple cert chains, they do not have to be in the same order as their private keys in key. If the intermediate certificates are not provided, the peer will not be able to validate the certificate, and the handshake will fail.',
46
+
},
47
+
{
48
+
displayName: 'SSL Cert',
49
+
name: 'sslCert',
50
+
type: 'string',
51
+
typeOptions: {
52
+
password: true,
53
+
},
54
+
displayOptions: {
55
+
show: {
56
+
ssl: [true],
57
+
},
58
+
},
59
+
default: '',
60
+
description: 'Cert chains in PEM format. One cert chain should be provided per private key. Each cert chain should consist of the PEM formatted certificate for a provided private key, followed by the PEM formatted intermediate certificates (if any), in order, and not including the root CA (the root CA must be pre-known to the peer, see ca). When providing multiple cert chains, they do not have to be in the same order as their private keys in key. If the intermediate certificates are not provided, the peer will not be able to validate the certificate, and the handshake will fail.',
61
+
},
62
+
{
63
+
displayName: 'SSL Key',
64
+
name: 'sslKey',
65
+
type: 'string',
66
+
typeOptions: {
67
+
password: true,
68
+
},
69
+
displayOptions: {
70
+
show: {
71
+
ssl: [true],
72
+
},
73
+
},
74
+
default: '',
75
+
description: 'Private keys in PEM format. PEM allows the option of private keys being encrypted. Encrypted keys will be decrypted with options.passphrase. Multiple keys using different algorithms can be provided either as an array of unencrypted key strings or buffers, or an array of objects in the form {pem: <string|buffer>[, passphrase: ]}. The object form can only occur in an array. object.passphrase is optional. Encrypted keys will be decrypted with object.passphrase if provided, or options.passphrase if it is not.',
76
+
},
77
+
{
78
+
displayName: 'SSL Key Passphrase',
79
+
name: 'sslPassphrase',
80
+
type: 'string',
81
+
typeOptions: {
82
+
password: true,
83
+
},
84
+
displayOptions: {
85
+
show: {
86
+
ssl: [true],
87
+
},
88
+
},
89
+
default: '',
90
+
description: 'Shared passphrase used for a single private key and/or a PFX.',
0 commit comments