Skip to content

Commit a44bd54

Browse files
authored
style edits for consistency within the docs
1 parent 313daa9 commit a44bd54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/log-management.html.md.erb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,15 @@ You can create a syslog drain service and bind apps to it using Cloud Foundry Co
130130
* Use the syslog scheme for endpoints that do not require TLS.
131131
* Use the https scheme when shipping logs to an HTTPS endpoint.
132132

133-
If you need to use TLS with a custom Certificate Authority (CA), ensure that you provide the necessary CA certificate. For mTLS configuration, both the client certificate and key must be provided. Additionally, when using mTLS with a custom CA, include the client certificate, client key, and the CA certificate.
133+
If you need to use TLS with a custom Certificate Authority (CA), ensure that you provide the necessary CA certificate. For mTLS configuration, both the client certificate and the key must be provided. Additionally, when using mTLS with a custom CA, include the client certificate, the client key, and the CA certificate.
134134

135-
Please ensure that certificates and keys are PEM-encoded as specified in RFC-1422. They should be provided as string values, with new lines represented by the \n character, and must not have trailing new lines. You can convert a PEM-encoded certificate string to a format processable by the syslog agent on the diego cell using the following command:
135+
Ensure that certificates and keys are PEM-encoded as specified in RFC-1422. They should be provided as string values, with new lines represented by the `\n` character, and must not have trailing new lines. You can convert a PEM-encoded certificate string to a format processable by the syslog agent on the Diego cell using the following command:
136136

137137
<pre class="terminal">
138138
$ awk 'NF {sub(/\r/, ""); printf "%s\\n",$0;}' cert.pem | sed 's/\\n$//' | tr -d '\n'
139139
</pre>
140140

141-
The `cf create-user-provided-service` command will accept any json payload without validating the certificates or credentials while creating the syslog drain. In older syslog agent versions there is no error message for wrong certificates or credentials - you can only validate in your target log service if your syslog drain was configured correctly. To troubleshoot your certificates, you can use the openssl commandline tool.
141+
The `cf create-user-provided-service` command accepts any JSON payload without validating the certificates or credentials while creating the syslog drain. In older syslog agent versions, there is no error message for wrong certificates or credentials; you can only validate in your target log service if your syslog drain was configured correctly. To troubleshoot your certificates, you can use the openssl command line tool.
142142

143143
For more information, see [User-provided service instances](./user-provided.html).
144144

0 commit comments

Comments
 (0)