From d9a4cd31523487bd93927e61a05f76cb226716f7 Mon Sep 17 00:00:00 2001 From: Viren Nadkarni Date: Wed, 8 Nov 2023 12:10:07 +0530 Subject: [PATCH] IoT endpoint are now fully qualified --- content/en/user-guide/aws/iot/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/user-guide/aws/iot/index.md b/content/en/user-guide/aws/iot/index.md index bfc49d502e..e8630a6cc4 100644 --- a/content/en/user-guide/aws/iot/index.md +++ b/content/en/user-guide/aws/iot/index.md @@ -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 >}} @@ -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 >}} @@ -54,8 +54,8 @@ In another terminal, publish a message to this topic. {{< command >}} $ mqtt publish \ - --host localhost.localstack.cloud \ - --port 4511 \ + --host 000000000000.iot.eu-central-1.localhost.localstack.cloud \ + --port 4510 \ --topic climate \ -m "temperature=30°C;humidity=60%" {{< /command >}}