diff --git a/cmd/aws.go b/cmd/aws.go index b15a2b5..1b5de90 100644 --- a/cmd/aws.go +++ b/cmd/aws.go @@ -30,13 +30,8 @@ import ( // awsCmd represents the aws command var awsCmd = &cobra.Command{ Use: "aws", - Short: "A brief description of your command", - Long: `A longer description that spans multiple lines and likely contains examples -and usage of using your command. For example: - -Cobra is a CLI library for Go that empowers applications. -This application is a tool to generate the needed files -to quickly create a Cobra application.`, + Short: "A collection of subcommands to deal with AWS", + Long: "A collection of subcommands to deal with AWS", Run: func(cmd *cobra.Command, args []string) { fmt.Println("aws called") }, diff --git a/cmd/root.go b/cmd/root.go index 27b8eb0..8c2e9de 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -37,11 +37,8 @@ var cfgFile string // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "ewcli", - Short: "To make my life easier", - Long: `Initially to automate some regular tasks toward AWS`, - // Uncomment the following line if your bare application - // has an action associated with it: - // Run: func(cmd *cobra.Command, args []string) { }, + Short: "ewcli provides subcommands to deal with day to day SRE/DevOps tasks", + Long: `ewcli provides subcommands to deal with day to day SRE/DevOps tasks`, } // Execute adds all child commands to the root command and sets flags appropriately. diff --git a/cmd/saml.go b/cmd/saml.go index 51f59bd..150cbc1 100644 --- a/cmd/saml.go +++ b/cmd/saml.go @@ -40,13 +40,8 @@ import ( // samlCmd represents the saml command var samlCmd = &cobra.Command{ Use: "saml", - Short: "A brief description of your command", - Long: `A longer description that spans multiple lines and likely contains examples -and usage of using your command. For example: - -Cobra is a CLI library for Go that empowers applications. -This application is a tool to generate the needed files -to quickly create a Cobra application.`, + Short: "aws saml subcommand deals with AWS IAM AssumeRole with SAML", + Long: `aws saml subcommand deals with AWS IAM AssumeRole with SAML`, // Run: func(cmd *cobra.Command, args []string) { // fmt.Println("saml called") // },