Skip to content

Commit

Permalink
[#349] Create a reference page for the Azure Connector
Browse files Browse the repository at this point in the history
Signed-off-by: Antonia Avramova <[email protected]>
  • Loading branch information
antonia-avramova committed Jun 14, 2024
1 parent 804612f commit 5d285df
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions web/site/content/docs/getting-started/hono.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ authentication data to establish the remote connection. Update it with the follo

```json
{
"provisioningFile": "/etc/suite-connector/provisioning.json",
"caCert": "/etc/suite-connector/iothub.crt",
"logFile": "/var/log/suite-connector/suite-connector.log",
"address":"mqtts://hono.eclipseprojects.io:8883",
"tenantId":"demo",
"deviceId":"demo:device",
"authId":"demo_device",
"password":"secret"
"address": "mqtts://hono.eclipseprojects.io:8883",
"tenantId": "demo",
"deviceId": "demo:device",
"authId": "demo_device",
"password": "secret"
}
```
{{% tip %}}
Expand Down
4 changes: 2 additions & 2 deletions web/site/content/docs/getting-started/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ at <a href="https://github.com/eclipse-kanto/kanto/releases" target="_blank">the
Download and install it via executing the following (adjusted to your package name):

```shell
wget https://github.com/eclipse-kanto/kanto/releases/download/v0.1.0-M3/kanto_0.1.0-M3_linux_x86_64.deb && \
sudo apt install ./kanto_0.1.0-M3_linux_x86_64.deb
wget https://github.com/eclipse-kanto/kanto/releases/download/v1.0.0/kanto_1.0.0_linux_x86_64.deb && \
sudo apt install ./kanto_1.0.0_linux_x86_64.deb
```

### Verify
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The minimal required configuration to connect.
```json
{
"connectionString": "HostName=hostName.azure-devices.net;DeviceId=deviceId;SharedAccessKey=cGFzc3AvcKQ=",
"caCert": "iothub.crt",
"caCert": "/etc/azure-connector/iothub.crt",
"logFile": "/var/log/azure-connector/azure-connector.log"
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ The minimal required configuration to connect the publicly available
```json
{
"address": "hono.eclipseprojects.io:1883",
"caCert": "/etc/suite-connector/iothub.crt",
"tenantId": "org.eclipse.kanto",
"deviceId": "org.eclipse.kanto:exampleDevice",
"authId": "org.eclipse.kanto_example",
Expand All @@ -75,7 +76,6 @@ Be aware that some combinations may be incompatible

```json
{
"provisioningFile": "provisioning.json",
"address": "mqtts://mqtt.bosch-iot-hub.com:8883",
"deviceId": "",
"authId": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ The minimal required configuration to enable the local digital twins and their s
```json
{
"address": "hono.eclipseprojects.io:1883",
"caCert": "/etc/local-digital-twins/iothub.crt",
"tenantId": "org.eclipse.kanto",
"deviceId": "org.eclipse.kanto:exampleDevice",
"authId": "org.eclipse.kanto_example",
Expand All @@ -74,7 +75,6 @@ Be aware that some combinations may be incompatible
```json
{
"thingsDb": "things.db",
"provisioningFile": "provisioning.json",
"address": "mqtts://mqtt.bosch-iot-hub.com:8883",
"deviceId": "",
"authId": "",
Expand Down

0 comments on commit 5d285df

Please sign in to comment.