-
Notifications
You must be signed in to change notification settings - Fork 68
/
config-template.json
56 lines (56 loc) · 1.74 KB
/
config-template.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"endpoint": "<replace_with_endpoint_value>",
"cert": "<replace_with_certificate_file_path>",
"key": "<replace_with_private_key_file_path>",
"root-ca": "<replace_with_root_ca_file_path>",
"thing-name": "<replace_with_thing_name/replace_with_client_id>",
"logging": {
"level": "DEBUG",
"type": "FILE",
"file": "/var/log/aws-iot-device-client/aws-iot-device-client.log"
},
"jobs": {
"enabled": true,
"handler-directory": "<replace_with_job_handler_directory_path>"
},
"tunneling": {
"enabled": true
},
"device-defender": {
"enabled": true,
"interval": 300
},
"fleet-provisioning": {
"enabled": false,
"template-parameters": "<replace_with_template_parameters>",
"template-name": "<replace_with_template_name>",
"csr-file": "<replace_with_csr_file_path>",
"device-key": "<replace_with_device_private_key_file_path>"
},
"samples": {
"pub-sub": {
"enabled": false,
"publish-topic": "<replace_with_publish_topic>",
"publish-file": "<replace_with_publish_file_path>",
"subscribe-topic": "<replace_with_subscribe_topic>",
"subscribe-file": "<replace_with_subscribe_file_path>"
}
},
"config-shadow": {
"enabled": false
},
"sample-shadow": {
"enabled": false,
"shadow-name": "<replace_with_shadow_name>",
"shadow-input-file": "<replace_with_shadow_input_file_path>",
"shadow-output-file": "<replace_with_shadow_output_file_path>"
},
"secure-element": {
"enabled": false,
"pkcs11-lib": "<replace_with_pkcs11_lib_path>",
"secure-element-pin": "<replace_with_secure_element_pin>",
"secure-element-key-label": "<replace_with_secure_element_key_label>",
"secure-element-slot-id": replace_with_secure_element_slot_id_integer,
"secure-element-token-label": "<replace_with_secure_element_token_label>"
}
}