Skip to content

Commit b4e6a60

Browse files
Merge pull request #213 from kube-logging/grpctls-docs
Grpctls docs for 4.5.1
2 parents 0aac57a + f237537 commit b4e6a60

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

config/_default/config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ twitter = "calisti12"
6969
# Used in the "version-banner" partial to display a version number for the
7070
# current doc set.
7171

72-
version = "4.5.0"
72+
version = "4.5.1"
7373
version_menu = "Releases"
7474
version_menu_canonicallinks = true
7575
version_menu_pagelinks = true
@@ -169,7 +169,7 @@ twitter = "calisti12"
169169
#######################
170170
# Add your release versions here
171171
[[params.versions]]
172-
version = "latest (4.5.0)"
172+
version = "latest (4.5.1)"
173173
githubbranch = "master"
174174
url = ""
175175
[[params.versions]]

content/docs/configuration/plugins/syslog-ng-outputs/auth.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ GRPC-based outputs use this configuration instead of the simple `tls` field foun
1010
## Configuration
1111
## Auth
1212

13+
Authentication settings. Only one authentication method can be set. Default: insecure
14+
1315
### adc (*ADC, optional) {#auth-adc}
1416

1517
Application Default Credentials (ADC).
@@ -25,7 +27,7 @@ Application Layer Transport Security (ALTS) is a simple to use authentication, o
2527
This is the default method, authentication is disabled (`auth(insecure())`).
2628

2729

28-
### tls (*TLS, optional) {#auth-tls}
30+
### tls (*GrpcTLS, optional) {#auth-tls}
2931

3032
This option sets various options related to TLS encryption, for example, key/certificate files and trusted CA locations. TLS can be used only with tcp-based transport protocols. For details, see [TLS for syslog-ng outputs](../tls/) and the [documentation of the AxoSyslog syslog-ng distribution](https://axoflow.com/docs/axosyslog-core/chapter-encrypted-transport-tls/tlsoptions).
3133

content/docs/configuration/plugins/syslog-ng-outputs/tls.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,21 @@ Use the certificate store of the system for verifying HTTPS certificates. For de
4949

5050

5151

52+
## GrpcTLS
53+
54+
### ca_file (*secret.Secret, optional) {#grpctls-ca_file}
55+
56+
The name of a file that contains a set of trusted CA certificates in PEM format. For details, see the [AxoSyslog Core documentation](https://axoflow.com/docs/axosyslog-core/chapter-encrypted-transport-tls/tlsoptions/#ca-file).
57+
58+
59+
### cert_file (*secret.Secret, optional) {#grpctls-cert_file}
60+
61+
Name of a file that contains an X.509 certificate (or a certificate chain) in PEM format, suitable as a TLS certificate, matching the private key set in the key-file() option. For details, see the [AxoSyslog Core documentation](https://axoflow.com/docs/axosyslog-core/chapter-encrypted-transport-tls/tlsoptions/#cert-file).
62+
63+
64+
### key_file (*secret.Secret, optional) {#grpctls-key_file}
65+
66+
The name of a file that contains an unencrypted private key in PEM format, suitable as a TLS key. For details, see the [AxoSyslog Core documentation](https://axoflow.com/docs/axosyslog-core/chapter-encrypted-transport-tls/tlsoptions/#key-file).
67+
68+
69+

0 commit comments

Comments
 (0)