Skip to content

Specify generic device is less secure #87

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cli/device/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ var createFlags struct {
func initCreateCommand() *cobra.Command {
createCommand := &cobra.Command{
Use: "create",
Short: "Create a device",
Long: "Create a device for Arduino IoT Cloud",
Short: "Create a device provisioning the onboard secure element with a valid certificate",
Long: "Create a device for Arduino IoT Cloud provisioning the onboard secure element with a valid certificate",
Run: runCreateCommand,
}
createCommand.Flags().StringVarP(&createFlags.port, "port", "p", "", "Device port")
Expand Down
4 changes: 2 additions & 2 deletions cli/device/creategeneric.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ var createGenericFlags struct {
func initCreateGenericCommand() *cobra.Command {
createGenericCommand := &cobra.Command{
Use: "create-generic",
Short: "Create a generic device",
Long: "Create a generic device for Arduino IoT Cloud",
Short: "Create a generic device with password authentication - without secure element - WARNING: less secure",
Long: "Create a generic device with password authentication for Arduino IoT Cloud - without secure element - WARNING: less secure",
Run: runCreateGenericCommand,
}
createGenericCommand.Flags().StringVarP(&createGenericFlags.name, "name", "n", "", "Device name")
Expand Down