Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bookmark Application Sign-On Policy #1352

Closed
jakezarobsky-8451 opened this issue Nov 8, 2022 · 0 comments · Fixed by #1366
Closed

Bookmark Application Sign-On Policy #1352

jakezarobsky-8451 opened this issue Nov 8, 2022 · 0 comments · Fixed by #1366
Labels
enhancement Asking for new behavior or feature policy Issues related to policies

Comments

@jakezarobsky-8451
Copy link
Contributor

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

The okta_app_bookmark resource does not have an input for an Authentication Policy ID. This is requiring Okta to request a second factor of authentication for our users when accessing from the Dashboard before the user is redirected to the bookmarked app.

The Okta Admin Portal DOES allow for configuration of Authentication Policies for Bookmarked apps.

New or Affected Resource(s)

  • okta_app_bookmark

Potential Terraform Configuration

data "okta_policy" "custom_policy" {
  name = "Custom Configured Policy"
  type = "ACCESS_POLICY"
}

resource "okta_app_bookmark" "example_app" {
  label                 = "Example App"
  url                   = "${var.example_app_url}"
  skip_groups = true
  # Desired:
  authentication_policy = okta_policy.custom_policy.id
}

References

App Bookmark Resource Docs:
https://registry.terraform.io/providers/okta/okta/latest/docs/resources/app_bookmark

I'm unable to post a screenshot from the Okta UI, but it does allow for configuration of auth policy

Okta API Docs (no mention of bookmark application policy)
https://developer.okta.com/docs/reference/api/apps/#update-application-policy

@jakezarobsky-8451 jakezarobsky-8451 added the enhancement Asking for new behavior or feature label Nov 8, 2022
jakezarobsky-8451 added a commit to jakezarobsky-8451/terraform-provider-okta that referenced this issue Nov 15, 2022
@monde monde added the policy Issues related to policies label Nov 15, 2022
@monde monde closed this as completed in 4381e80 Nov 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Asking for new behavior or feature policy Issues related to policies
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants