-
Notifications
You must be signed in to change notification settings - Fork 27
Update index.adoc #896
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
AyeshaFirdausTG
wants to merge
1
commit into
4.2
Choose a base branch
from
DOC-2978-tls-encryption-4.2
base: 4.2
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Update index.adoc #896
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,6 +36,101 @@ TigerGraph Server meets the following security compliance standards as certified | |
| * https://www.tigergraph.com/soc-2/[SOC 2 Compliance] | ||
| * https://www.tigergraph.com/compliance/[PCI-DSS] | ||
|
|
||
| == Configuring TLS for Internal Kafka. | ||
|
|
||
| This feature introduces SSL/TLS encryption for TigerGraph’s internal Kafka. It addresses the lack of native encryption and authentication for data in transit within the TigerGraph cluster. | ||
|
|
||
| === Basic Setup Workflow | ||
|
|
||
| [source,bash] | ||
| ---- | ||
| gadmin config set Kafka.Security.SSL.Certificate @/path/to/cert.pem | ||
| ---- | ||
|
|
||
| * Set certificate-chain in PEM format. | ||
|
|
||
| [source,bash] | ||
| ---- | ||
| gadmin config set Kafka.Security.SSL.PrivateKey @/path/to/prikey.pem | ||
| ---- | ||
|
|
||
| * Set private-key in PEM format. | ||
|
|
||
| [source,bash] | ||
| ---- | ||
| gadmin config set Kafka.Security.SSL.Passphrase @/path/to/passphrase | ||
| ---- | ||
|
|
||
| * Set passphrase for private key. Java keystore requires passphrase. | ||
|
|
||
| [source,bash] | ||
| ---- | ||
| gadmin config set Kafka.Security.SSL.Enable true | ||
| ---- | ||
|
|
||
| [source,bash] | ||
| ---- | ||
| gadmin config apply -y | ||
| ---- | ||
|
|
||
| [source,bash] | ||
| ---- | ||
| gadmin restart -y kafka | ||
| ---- | ||
|
|
||
| Kafka restarts with the new configurations. | ||
|
Comment on lines
+76
to
+81
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, here we should |
||
|
|
||
| === Configuration Reference | ||
|
|
||
| [cols="1,2,1", options="header"] | ||
| |=== | ||
| | Parameter | Description | Default Value | ||
|
|
||
| | Kafka.Security.SSL.Certificate | ||
| | Kafka broker certificate in PEM format | ||
| | | ||
|
|
||
| | Kafka.Security.SSL.Enable | ||
| | Enable Kafka TLS encryption | ||
| | false | ||
|
|
||
| | Kafka.Security.SSL.ExternalListener.ClientAuth | ||
| | Enable SSL client authentication for external listeners, the root certificate of Kafka.Security.SSL.Certificate will be used to trust client certificate. | ||
| | false | ||
|
|
||
| | Kafka.Security.SSL.Passphrase | ||
| | Kafka broker private key passphrase. Should not be empty. | ||
| | | ||
|
|
||
| | Kafka.Security.SSL.Port | ||
| | Kafka SSL listening port | ||
| | 30001 | ||
|
|
||
| | Kafka.Security.SSL.PrivateKey | ||
| | Kafka broker private key in PEM format | ||
| | | ||
|
|
||
| | Kafka.Security.ClientConf.ProtocolForAllClients | ||
| | If specified, all clients must use the specified protocol. Legal values include: empty-string (not specified), ssl, plaintext. If it's not specified, clients can choose a preferred protocol | ||
| | | ||
|
|
||
| | Kafka.Security.ClientConf.EngineProtocol | ||
| | It is the protocol for engine-kafka communication. The value can be an empty-string or "plaintext", "ssl". It's overridden by Kafka.Security.ClientConf.ProtocolForAllClients. | ||
| | | ||
|
|
||
| | Kafka.Security.ClientConf.InfraProtocol | ||
| | It is the protocol for infra-kafka communication. The value can be an empty-string or "plaintext", "ssl". It's overridden by Kafka.Security.ClientConf.ProtocolForAllClients. | ||
| | | ||
|
|
||
| | Kafka.Security.ClientConf.InterBrokerProtocol | ||
| | It is the protocol for inter-broker communication. The value can be an empty-string or "plaintext", "ssl". It's overridden by Kafka.Security.ClientConf.ProtocolForAllClients. | ||
| | | ||
| |=== | ||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
| == Vulnerability scanning | ||
| TigerGraph leverages best-of-breed tools to periodically and proactively scan source code, application runtime, infrastructure to identify security vulnerabilities: | ||
|
|
||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description can be placed before the code block. Same for the following.
Btw, is the numbered list better than bullet points here?