Skip to content

Commit e2fc06b

Browse files
authored
Small capitalization change
1 parent 7becd1f commit e2fc06b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/iot-operations/manage-mqtt-broker/howto-configure-brokerlistener.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ The prior example stores the CA certificate in a Kubernetes secret called `test-
472472
kubectl get secret test-ca -n azure-iot-operations -o json | jq -r '.data["tls.crt"]' | base64 -d > ca.crt
473473
```
474474

475-
This certificate must be distributed and trusted by all clients. For example, use the `--cafile` flag for a mosquitto client.
475+
This certificate must be distributed and trusted by all clients. For example, use the `--cafile` flag for a Mosquitto client.
476476

477477
#### Create issuer based on CA certificate
478478

@@ -666,13 +666,13 @@ aio-broker-loadbalancer-tls LoadBalancer 10.X.X.X 172.X.X.X 8884
666666

667667
#### Connect to the broker with TLS
668668

669-
After the server certificate is configured, TLS is enabled. To test with mosquitto:
669+
After the server certificate is configured, TLS is enabled. To test with Mosquitto:
670670

671671
```bash
672672
mosquitto_pub -h $HOST -p 8884 -V mqttv5 -i "test" -t "test" -m "test" --cafile ca.crt
673673
```
674674

675-
The `--cafile` argument enables TLS on the mosquitto client and specifies that the client should trust all server certificates issued by the specific file. You must specify a file that contains the issuer of the configured TLS server certificate.
675+
The `--cafile` argument enables TLS on the Mosquitto client and specifies that the client should trust all server certificates issued by the specific file. You must specify a file that contains the issuer of the configured TLS server certificate.
676676

677677
Replace `$HOST` with the appropriate host:
678678

@@ -854,7 +854,7 @@ After the BrokerListener resource is created, the operator automatically creates
854854

855855
### Connect to the broker with TLS
856856

857-
To test the TLS connection with mosquitto client, publish a message and pass the root CA certificate in the parameter `--cafile`.
857+
To test the TLS connection with Mosquitto client, publish a message and pass the root CA certificate in the parameter `--cafile`.
858858

859859
```bash
860860
mosquitto_pub -d -h localhost -p 8885 -i "my-client" -t "test-topic" -m "Hello" --cafile root_ca.crt

0 commit comments

Comments
 (0)