Skip to content

Commit

Permalink
SNOW-1692674 Remove *.okta.com check from native okta authenticator v…
Browse files Browse the repository at this point in the history
…alidation
  • Loading branch information
sfc-gh-dheyman-1 committed Oct 8, 2024
1 parent 1197e55 commit b486501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func determineAuthenticatorType(cfg *Config, value string) error {
}
}

if oktaURL.Scheme != "https" || !strings.HasSuffix(oktaURL.Host, "okta.com") {
if oktaURL.Scheme != "https" {
return &SnowflakeError{
Number: ErrCodeFailedToParseAuthenticator,
Message: errMsgFailedToParseAuthenticator,
Expand Down

0 comments on commit b486501

Please sign in to comment.