samples: net: google_iot_mqtt: fix CONFIG_CLOUD_CLIENT_ID value

According to
https://cloud.google.com/iot/docs/how-tos/mqtt-bridge#configuring_mqtt_clients
MQTT client ID format.

Signed-off-by: Alexey Markevich <buhhunyx@gmail.com>
This commit is contained in:
Alexey Markevich 2020-07-01 17:22:21 +03:00 committed by Anas Nashif
commit 2d8e71ba0c

View file

@ -60,7 +60,7 @@ CONFIG_MBEDTLS_USER_CONFIG_FILE="user-tls.conf"
# Please see README.rst in this directory for instructions # Please see README.rst in this directory for instructions
# on where to get the values for these config entries. # on where to get the values for these config entries.
CONFIG_CLOUD_CLIENT_ID="projects/<PROJECT_ID>/locations/<REGION>/registries/<REGISTRY_ID>/devices/" CONFIG_CLOUD_CLIENT_ID="projects/<PROJECT_ID>/locations/<REGION>/registries/<REGISTRY_ID>/devices/<DEVICE_ID>"
CONFIG_CLOUD_AUDIENCE="<PROJECT_ID>" CONFIG_CLOUD_AUDIENCE="<PROJECT_ID>"
CONFIG_CLOUD_SUBSCRIBE_CONFIG="/devices/<DEVICE_ID>/config" CONFIG_CLOUD_SUBSCRIBE_CONFIG="/devices/<DEVICE_ID>/config"
CONFIG_CLOUD_PUBLISH_TOPIC="/devices/<DEVICE_ID>/state" CONFIG_CLOUD_PUBLISH_TOPIC="/devices/<DEVICE_ID>/state"