-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove analytics and allow region selection
Add Okta server selection, choose server by selecting Okta region. Remove Okta password from storage. This may be paranoid but only store the session token and other details in the keychain. When the session expires the user will have to re-authenticate. Update the README and Makefile for FiveAI releases. Signed-off-by: Sean Jones <[email protected]>
- Loading branch information
1 parent
1d21ea0
commit c99725e
Showing
33 changed files
with
68 additions
and
1,868 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
package main | ||
|
||
import ( | ||
"github.com/segmentio/aws-okta/cmd" | ||
"github.com/fiveai/aws-okta/cmd" | ||
) | ||
|
||
// These are set via linker flags | ||
var ( | ||
Version = "dev" | ||
AnalyticsWriteKey = "" | ||
Version = "dev" | ||
) | ||
|
||
func main() { | ||
// vars set by linker flags must be strings... | ||
cmd.Execute(Version, AnalyticsWriteKey) | ||
cmd.Execute(Version) | ||
} |
Oops, something went wrong.