1# Private config options for Google Cloud IOT application
2
3# Copyright (c) 2018 Linaro
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "Google IOT MQTT/TLS sample application"
7
8config CLOUD_CLIENT_ID
9	string "Client ID string"
10	default "put client string here"
11	help
12	  Set required client string that matches Google Cloud project
13
14config CLOUD_AUDIENCE
15	string "Audience string"
16	default "put audience string here"
17	help
18	  Set required audience string that matches Google Cloud project
19
20config CLOUD_SUBSCRIBE_CONFIG
21	string "Subscription string for config"
22	default "put subscription string here"
23	help
24	  Set required subscription string that matches Google Cloud project
25	  config item.
26
27config CLOUD_PUBLISH_TOPIC
28	string "Publish topic string"
29	default "put topic string here"
30	help
31	  Set publish topics string that matches Google Cloud project
32
33source "Kconfig.zephyr"
34