okta / terraform-provider-okta

A Terraform provider to manage Okta resources, enabling infrastructure-as-code provisioning and management of users, groups, applications, and other Okta objects.
https://registry.terraform.io/providers/okta/okta
Mozilla Public License 2.0
258 stars 208 forks source link

Support setting auto launch for bookmark apps (okta_app_bookmark) #2115

Open sinha-abhi opened 2 weeks ago

sinha-abhi commented 2 weeks ago

Community Note

Description

Support setting autoLaunch for bookmark apps -- currently the Okta provider doesn't support setting autoLaunch: true (using version 4.11.0). This is supported by the Okta API: https://developer.okta.com/docs/api/openapi/okta-management/management/tag/Application/#tag/Application/operation/createApplication!path=2/visibility/autoLaunch&t=request.

New or Affected Resource(s)

Potential Terraform Configuration

resource "okta_app_bookmark" "my_bookmark_app" {
  label       = "My Bookmark App"
  url         = "https://www.my.bookmark.com/"
  status      = "ACTIVE"
  auto_launch = true
}

References

duytiennguyen-okta commented 2 weeks ago

OKTA internal reference https://oktainc.atlassian.net/browse/OKTA-824512