Skip to content

Commit eb9329d

Browse files
committed
Address review comments
1 parent 2ed36f1 commit eb9329d

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

articles/iot-operations/manage-mqtt-broker/tutorial-tls-and-x509.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,22 @@ fabrikam_intermediate_ca.crt fabrikam_intermediate_ca.key \
100100
Then, generate client certificates for a thermostat, hygrometer, heater, and lightbulb.
101101

102102
```bash
103+
# Create a client certificate for the thermostat
103104
step certificate create thermostat thermostat.crt thermostat.key \
104105
--ca ./fabrikam_intermediate_ca.crt --ca-key ./fabrikam_intermediate_ca.key --bundle \
105106
--not-after 2400h --no-password --insecure
107+
108+
# Create a client certificate for the hygrometer
106109
step certificate create hygrometer hygrometer.crt hygrometer.key \
107110
--ca ./fabrikam_intermediate_ca.crt --ca-key ./fabrikam_intermediate_ca.key --bundle \
108111
--not-after 2400h --no-password --insecure
112+
113+
# Create a client certificate for the heater
109114
step certificate create heater heater.crt heater.key \
110115
--ca ./fabrikam_intermediate_ca.crt --ca-key ./fabrikam_intermediate_ca.key --bundle \
111116
--not-after 2400h --no-password --insecure
117+
118+
# Create a client certificate for the lightbulb
112119
step certificate create lightbulb lightbulb.crt lightbulb.key \
113120
--ca ./fabrikam_intermediate_ca.crt --ca-key ./fabrikam_intermediate_ca.key --bundle \
114121
--not-after 2400h --no-password --insecure

articles/iot-operations/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ items:
189189
href: connect-to-cloud/tutorial-mqtt-bridge.md
190190
- name: Send data to Data Lake Storage
191191
href: connect-to-cloud/tutorial-opc-ua-to-data-lake.md
192-
- name: TLS/X.509/ABAC
192+
- name: Secure communication with TLS, X.509, and ABAC
193193
href: manage-mqtt-broker/tutorial-tls-and-x509.md
194194
- name: Troubleshoot
195195
items:

0 commit comments

Comments
 (0)