This repository has been archived by the owner on Jun 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add visibility settings to oauth app
Expose oauth visibility settings Remove debug log line
- Loading branch information
Showing
4 changed files
with
38 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
resource "okta_app_oauth" "test" { | ||
label = "testAcc_replace_with_uuid" | ||
status = "INACTIVE" | ||
type = "browser" | ||
grant_types = ["implicit"] | ||
redirect_uris = ["http://d.com/aaa"] | ||
response_types = ["token", "id_token"] | ||
label = "testAcc_replace_with_uuid" | ||
status = "INACTIVE" | ||
type = "browser" | ||
grant_types = ["implicit"] | ||
redirect_uris = ["http://d.com/aaa"] | ||
response_types = ["token", "id_token"] | ||
hide_ios = true | ||
hide_web = true | ||
auto_submit_toolbar = false | ||
} |
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