Skip to content

Commit

Permalink
WIP #193 - OIDC Login
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-r-west committed Nov 20, 2024
1 parent e3166a9 commit 99c7f35
Show file tree
Hide file tree
Showing 10 changed files with 645 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cmd/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -612,3 +612,13 @@ var loginAccountManagement = &cobra.Command{
return json.PrintJson(string(jsonBody))
},
}

var loginOidc = &cobra.Command{
Use: "oidc",
Short: "Starts a local webserver to facilitate OIDC login flows",
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {

return StartOIDCServer(8080)
},
}
Loading

0 comments on commit 99c7f35

Please sign in to comment.