Skip to content

Commit 361e939

Browse files
committed
Readability
1 parent bd3dae9 commit 361e939

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/iot-edge/configure-device.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ services: iot-edge
1313

1414
This article shows settings and options for configuring the IoT Edge *config.toml* file of an IoT Edge device. IoT Edge uses the *config.toml* file to initialize settings for the device. Each of the sections of the *config.toml* file has several options. Not all options are mandatory, as they apply to specific scenarios.
1515

16-
A template containing all options can be found in the *config.toml.edge.template* file within the */etc/aziot* directory on an IoT Edge device. You have the option to copy the contents of the whole template or sections of the template into your *config.toml* file. Uncomment the sections you need. Be aware not to copy over parameters you have already defined.
16+
A template containing all options can be found in the *config.toml.edge.template* file within the */etc/aziot* directory on an IoT Edge device. You can copy the contents of the whole template or sections of the template into your *config.toml* file. Uncomment the sections you need. Be aware not to copy over parameters you have already defined.
1717

1818
## Global parameters
1919

20-
The `hostname`, `parent_hostname`, `trust_bundle_cert`, `allow_elevated_docker_permissions`, and `auto_reprovisioning_mode` parameters must be at the beginning of the configuration file before any other sections. Adding parameters before defined sections ensures they're applied correctly. For more information on valid syntax, see [toml.io ](https://toml.io/).
20+
The `hostname`, `parent_hostname`, `trust_bundle_cert`, `allow_elevated_docker_permissions`, and `auto_reprovisioning_mode` parameters must be at the beginning of the configuration file before any other sections. Adding parameters before a collection of settings ensures they're applied correctly. For more information on valid syntax, see [toml.io ](https://toml.io/).
2121

2222
### Hostname
2323

@@ -56,7 +56,7 @@ For more information about the IoT Edge trust bundle, see [Manage trusted root C
5656

5757
### Elevated Docker Permissions
5858

59-
Some docker capabilities can be used to gain root access. By default, the **--privileged** flag and all capabilities listed in the **CapAdd** parameter of the docker **HostConfig** are allowed.
59+
Some docker capabilities can be used to gain root access. By default, the `--privileged` flag and all capabilities listed in the **CapAdd** parameter of the docker **HostConfig** are allowed.
6060

6161
If no modules require privileged or extra capabilities, use **allow_elevated_docker_permissions** to improve the security of the device.
6262

@@ -256,7 +256,7 @@ identity_pk = "pkcs11:slot-id=0;object=est-id?pin-value=1234" # PKCS#11 URI
256256

257257
### EST ID cert requested via EST bootstrap ID cert
258258

259-
Authentication with a TLS client certificate which are used once to create the initial EST ID certificate. After the first certificate issuance, an `identity_cert` and `identity_pk` are automatically created and used for future authentication and renewals. The Subject Common Name (CN) of the generated EST ID certificate is always the same as the configured device ID under the provisioning section. These files must be readable by the users aziotcs and aziotks, respectively.
259+
Authentication with a TLS client certificate that is used once to create the initial EST ID certificate. After the first certificate issuance, an `identity_cert` and `identity_pk` are automatically created and used for future authentication and renewals. The Subject Common Name (CN) of the generated EST ID certificate is always the same as the configured device ID under the provisioning section. These files must be readable by the users *aziotcs* and *aziotks*, respectively.
260260

261261
```toml
262262
bootstrap_identity_cert = "file:///var/aziot/certs/est-bootstrap-id.pem"
@@ -304,7 +304,7 @@ The TPM index persists the DPS authentication key. The index is taken as an offs
304304
auth_key_index = "0x00_01_00"
305305
```
306306

307-
Use authorization values for endorsement and owner hierarchies, if needed. By default, these are empty strings.
307+
Use authorization values for endorsement and owner hierarchies, if needed. By default, these values are empty strings.
308308

309309
```toml
310310
[tpm.hierarchy_authorization]

0 commit comments

Comments
 (0)