Skip to content

Commit

Permalink
Fix conflicting flag in create database command
Browse files Browse the repository at this point in the history
  • Loading branch information
ipmb committed Oct 26, 2021
1 parent 24ed322 commit fd7f7ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/createDatabase.go
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ var createDatabaseCmd = &cobra.Command{

func init() {
createCmd.AddCommand(createDatabaseCmd)
createDatabaseCmd.Flags().StringP("cluster", "c", "apppack", "cluster name")
createDatabaseCmd.Flags().String("cluster", "apppack", "cluster name")
createDatabaseCmd.Flags().StringP("instance-class", "i", "db.t3.medium", "instance class -- see https://aws.amazon.com/rds/postgresql/pricing/?pg=pr&loc=3")
createDatabaseCmd.Flags().BoolP("aurora", "a", false, "use Aurora -- see https://aws.amazon.com/rds/aurora/")
createDatabaseCmd.Flags().StringP("engine", "e", "postgresql", "engine [mysql,postgres")
Expand Down

0 comments on commit fd7f7ef

Please sign in to comment.