Skip to content

Commit

Permalink
Add name to domain and project flags
Browse files Browse the repository at this point in the history
  • Loading branch information
kayrus committed Jul 16, 2024
1 parent 2c85971 commit 013b2b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ Flags:
--to-application-credential-name string destination application credential name
--to-application-credential-secret string destination application credential secret
--to-auth-url string destination auth URL (if not provided, detected automatically from the source auth URL and destination region)
--to-domain string destination domain
--to-domain string destination domain name
--to-password string destination username password
--to-project string destination project
--to-project string destination project name
--to-region string destination region
--to-username string destination username
-y, --yes assume "yes" to all questions
Expand Down
4 changes: 2 additions & 2 deletions pkg/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ func initRootCmdFlags() {
RootCmd.PersistentFlags().BoolP("no", "n", false, "assume \"no\" to all questions")
RootCmd.PersistentFlags().StringP("to-auth-url", "", "", "destination auth URL (if not provided, detected automatically from the source auth URL and destination region)")
RootCmd.PersistentFlags().StringP("to-region", "", "", "destination region")
RootCmd.PersistentFlags().StringP("to-domain", "", "", "destination domain")
RootCmd.PersistentFlags().StringP("to-project", "", "", "destination project")
RootCmd.PersistentFlags().StringP("to-domain", "", "", "destination domain name")
RootCmd.PersistentFlags().StringP("to-project", "", "", "destination project name")
RootCmd.PersistentFlags().StringP("to-username", "", "", "destination username")
RootCmd.PersistentFlags().StringP("to-password", "", "", "destination username password")
RootCmd.PersistentFlags().StringP("to-application-credential-name", "", "", "destination application credential name")
Expand Down

0 comments on commit 013b2b9

Please sign in to comment.