You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+40-1Lines changed: 40 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,46 @@ Download the [latest release](https://github.com/microchip-pic-avr-tools/iotprov
12
12
13
13
## Getting Started and Documentation
14
14
15
-
The zip file contains command-line executables for Windows®, macOS®, and Linux® operating systems bundled with all the firmware needed to complete the provisioning. Extract and use the command-line utility corresponding to your operating system. You will find more instructions for running the tool in iotprovision.md found in the root folder.
15
+
The zip file contains command-line executables for Windows®, macOS®, and Linux® operating systems bundled with all the firmware needed to complete the provisioning. Extract and use the command-line utility corresponding to your operating system. You will find more instructions for running the tool in iotprovision.md in the root folder.
16
+
17
+
### CLI usage
18
+
Getting help:
19
+
```
20
+
iotprovision --help
21
+
```
22
+
Provision for Amazon Web Services, using Microchip sandbox account:
23
+
```
24
+
iotprovision -c aws -m sandbox
25
+
```
26
+
Provision for Amazon Web Services, using MAR and custom account:
27
+
```
28
+
iotprovision -c aws -m mar
29
+
```
30
+
Provision for Amazon Web Services, using JITR and custom account:
31
+
```
32
+
iotprovision -c aws -m jitr
33
+
```
34
+
Provision for Google Cloud Platform, using Microchip sandbox account:
35
+
```
36
+
iotprovision -c google -m sandbox
37
+
```
38
+
Provision for Microsoft Azure (preliminary - only kit provisioning):
39
+
```
40
+
iotprovision -c azure
41
+
```
42
+
The amount of logging is controlled by the -v/--verbose option:
43
+
Possible log levels are `debug`, `info`, `warning`, `error`, `critical`. Default is `info`.
0 commit comments