From 472d956ad5e541335d8519e30be0400bd7076f66 Mon Sep 17 00:00:00 2001 From: mdspur Date: Thu, 12 Dec 2024 10:51:47 -0800 Subject: [PATCH] Update --userdata usage to be more clear Don't mention how data is processed under the hood. This avoids someone quickly reading the line and thinking it expects base64 input. --- cmd/instance/instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/instance/instance.go b/cmd/instance/instance.go index 7bcdcef..d06bf66 100644 --- a/cmd/instance/instance.go +++ b/cmd/instance/instance.go @@ -364,7 +364,7 @@ func NewCmdInstance(base *cli.Base) *cobra.Command { //nolint:funlen,gocyclo "userdata", "u", "", - "plain text userdata you want to give this instance which the CLI will base64 encode", + "plain text userdata you want to give this instance", ) create.Flags().BoolP("notify", "n", false, "notify when instance has been created | true or false") create.Flags().BoolP("ddos", "d", false, "enable ddos protection | true or false")