1# Private config options for mqtt-azure sample app
2
3# Copyright (c) 2019 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "Networking mqtt-azure sample application"
7
8config SAMPLE_CLOUD_AZURE_USERNAME
9	string "Azure cloud username"
10	help
11	  Username of your Azure account.
12
13config SAMPLE_CLOUD_AZURE_PASSWORD
14	string "Azure cloud password"
15	help
16	  Password of your Azure account.
17
18config SAMPLE_CLOUD_AZURE_CLIENT_ID
19	string "Azure cloud IoT hub MQTT client ID"
20	help
21	  Device ID which you have setup in IoT hub account.
22
23config SAMPLE_CLOUD_AZURE_HOSTNAME
24	string "Azure cloud IoT hub hostname"
25	help
26	  Hostname of your Azure cloud IoT hub.
27
28config SAMPLE_CLOUD_AZURE_SERVER_ADDR
29	string "Azure cloud server address"
30	help
31	  Azure cloud server address.
32
33config SAMPLE_CLOUD_AZURE_SERVER_PORT
34	int "Azure cloud server port number"
35	default 8883
36	help
37	  Azure cloud server port number.
38
39config SAMPLE_SOCKS_ADDR
40	string "Proxy address"
41	depends on SOCKS
42	help
43	  Provide proxy address if you are running this application
44	  behind proxy.
45
46config SAMPLE_SOCKS_PORT
47	int "Proxy port"
48	depends on SOCKS
49	help
50	  Provide proxy port if you are running this application
51	  behind proxy.
52
53source "Kconfig.zephyr"
54