Skip to content

Commit

Permalink
Evidence CLI - evidence service does not support basic auth.
Browse files Browse the repository at this point in the history
  • Loading branch information
osaidwtd committed Nov 6, 2024
1 parent aedb997 commit a0b539d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions evidence/cli/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const (
ServerId = "server-id"
url = "url"
user = "user"
password = "password"
accessToken = "access-token"
project = "project"

Expand Down Expand Up @@ -43,7 +42,6 @@ var flagsMap = map[string]components.Flag{
ServerId: components.NewStringFlag(ServerId, "Server ID configured using the config command.", func(f *components.StringFlag) { f.Mandatory = false }),
url: components.NewStringFlag(url, "JFrog Platform URL.", func(f *components.StringFlag) { f.Mandatory = false }),
user: components.NewStringFlag(user, "JFrog username.", func(f *components.StringFlag) { f.Mandatory = false }),
password: components.NewStringFlag(password, "JFrog password.", func(f *components.StringFlag) { f.Mandatory = false }),
accessToken: components.NewStringFlag(accessToken, "JFrog access token.", func(f *components.StringFlag) { f.Mandatory = false }),
project: components.NewStringFlag(project, "Project key associated with the created evidence.", func(f *components.StringFlag) { f.Mandatory = false }),

Expand All @@ -67,7 +65,6 @@ var commandFlags = map[string][]string{
CreateEvidence: {
url,
user,
password,
accessToken,
ServerId,
project,
Expand Down

0 comments on commit a0b539d

Please sign in to comment.