Skip to content

Commit

Permalink
IoT endpoint are now fully qualified (#898)
Browse files Browse the repository at this point in the history
  • Loading branch information
viren-nadkarni authored and alexrashed committed Nov 9, 2023
1 parent eab2f0d commit 6b5b30d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/en/user-guide/aws/iot/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To retrieve the MQTT endpoint, use the [`DescribeEndpoint`](https://docs.aws.ama
{{< command >}}
$ awslocal iot describe-endpoint
{
"endpointAddress": "localhost.localstack.cloud:4510"
"endpointAddress": "000000000000.iot.eu-central-1.localhost.localstack.cloud:4510"
}
{{< / command >}}

Expand All @@ -45,7 +45,7 @@ Run the following command to subscribe to an MQTT topic.

{{< command >}}
$ mqtt subscribe \
--host localhost.localstack.cloud \
--host 000000000000.iot.eu-central-1.localhost.localstack.cloud \
--port 4510 \
--topic climate
{{< /command >}}
Expand All @@ -54,7 +54,7 @@ In another terminal, publish a message to this topic.

{{< command >}}
$ mqtt publish \
--host localhost.localstack.cloud \
--host 000000000000.iot.eu-central-1.localhost.localstack.cloud \
--port 4510 \
--topic climate \
-m "temperature=30°C;humidity=60%"
Expand Down

0 comments on commit 6b5b30d

Please sign in to comment.