okta logo
Okta v3.23.0, Apr 20 23

okta.app.Bookmark

Explore with Pulumi AI

This resource allows you to create and configure a Bookmark Application.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Okta = Pulumi.Okta;

return await Deployment.RunAsync(() => 
{
    var example = new Okta.App.Bookmark("example", new()
    {
        Label = "Example",
        Url = "https://example.com",
    });

});
package main

import (
	"github.com/pulumi/pulumi-okta/sdk/v3/go/okta/app"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := app.NewBookmark(ctx, "example", &app.BookmarkArgs{
			Label: pulumi.String("Example"),
			Url:   pulumi.String("https://example.com"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.okta.app.Bookmark;
import com.pulumi.okta.app.BookmarkArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Bookmark("example", BookmarkArgs.builder()        
            .label("Example")
            .url("https://example.com")
            .build());

    }
}
import pulumi
import pulumi_okta as okta

example = okta.app.Bookmark("example",
    label="Example",
    url="https://example.com")
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = new okta.app.Bookmark("example", {
    label: "Example",
    url: "https://example.com",
});
resources:
  example:
    type: okta:app:Bookmark
    properties:
      label: Example
      url: https://example.com

Create Bookmark Resource

new Bookmark(name: string, args: BookmarkArgs, opts?: CustomResourceOptions);
@overload
def Bookmark(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             accessibility_error_redirect_url: Optional[str] = None,
             accessibility_login_redirect_url: Optional[str] = None,
             accessibility_self_service: Optional[bool] = None,
             admin_note: Optional[str] = None,
             app_links_json: Optional[str] = None,
             authentication_policy: Optional[str] = None,
             auto_submit_toolbar: Optional[bool] = None,
             enduser_note: Optional[str] = None,
             groups: Optional[Sequence[str]] = None,
             hide_ios: Optional[bool] = None,
             hide_web: Optional[bool] = None,
             label: Optional[str] = None,
             logo: Optional[str] = None,
             request_integration: Optional[bool] = None,
             skip_groups: Optional[bool] = None,
             skip_users: Optional[bool] = None,
             status: Optional[str] = None,
             url: Optional[str] = None,
             users: Optional[Sequence[BookmarkUserArgs]] = None)
@overload
def Bookmark(resource_name: str,
             args: BookmarkArgs,
             opts: Optional[ResourceOptions] = None)
func NewBookmark(ctx *Context, name string, args BookmarkArgs, opts ...ResourceOption) (*Bookmark, error)
public Bookmark(string name, BookmarkArgs args, CustomResourceOptions? opts = null)
public Bookmark(String name, BookmarkArgs args)
public Bookmark(String name, BookmarkArgs args, CustomResourceOptions options)
type: okta:app:Bookmark
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args BookmarkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args BookmarkArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args BookmarkArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args BookmarkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args BookmarkArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Bookmark Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The Bookmark resource accepts the following input properties:

Label string

The Application's display name.

Url string

The URL of the bookmark.

AccessibilityErrorRedirectUrl string

Custom error page URL.

AccessibilityLoginRedirectUrl string

Custom login page for this application.

AccessibilitySelfService bool

Enable self-service. By default, it is false.

AdminNote string

Application notes for admins.

AppLinksJson string

Displays specific appLinks for the app. The value for each application link should be boolean.

AuthenticationPolicy string

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

AutoSubmitToolbar bool

Display auto submit toolbar.

EnduserNote string

Application notes for end users.

Groups List<string>

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

HideIos bool

Do not display application icon on mobile app.

HideWeb bool

Do not display application icon to users.

Logo string

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

RequestIntegration bool

Would you like Okta to add an integration for this app?

SkipGroups bool

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

SkipUsers bool

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

Status string

Status of application. ("ACTIVE" or "INACTIVE").

Users List<BookmarkUserArgs>

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

Label string

The Application's display name.

Url string

The URL of the bookmark.

AccessibilityErrorRedirectUrl string

Custom error page URL.

AccessibilityLoginRedirectUrl string

Custom login page for this application.

AccessibilitySelfService bool

Enable self-service. By default, it is false.

AdminNote string

Application notes for admins.

AppLinksJson string

Displays specific appLinks for the app. The value for each application link should be boolean.

AuthenticationPolicy string

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

AutoSubmitToolbar bool

Display auto submit toolbar.

EnduserNote string

Application notes for end users.

Groups []string

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

HideIos bool

Do not display application icon on mobile app.

HideWeb bool

Do not display application icon to users.

Logo string

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

RequestIntegration bool

Would you like Okta to add an integration for this app?

SkipGroups bool

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

SkipUsers bool

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

Status string

Status of application. ("ACTIVE" or "INACTIVE").

Users []BookmarkUserArgs

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

label String

The Application's display name.

url String

The URL of the bookmark.

accessibilityErrorRedirectUrl String

Custom error page URL.

accessibilityLoginRedirectUrl String

Custom login page for this application.

accessibilitySelfService Boolean

Enable self-service. By default, it is false.

adminNote String

Application notes for admins.

appLinksJson String

Displays specific appLinks for the app. The value for each application link should be boolean.

authenticationPolicy String

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

autoSubmitToolbar Boolean

Display auto submit toolbar.

enduserNote String

Application notes for end users.

groups List<String>

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

hideIos Boolean

Do not display application icon on mobile app.

hideWeb Boolean

Do not display application icon to users.

logo String

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

requestIntegration Boolean

Would you like Okta to add an integration for this app?

skipGroups Boolean

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

skipUsers Boolean

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

status String

Status of application. ("ACTIVE" or "INACTIVE").

users List<BookmarkUserArgs>

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

label string

The Application's display name.

url string

The URL of the bookmark.

accessibilityErrorRedirectUrl string

Custom error page URL.

accessibilityLoginRedirectUrl string

Custom login page for this application.

accessibilitySelfService boolean

Enable self-service. By default, it is false.

adminNote string

Application notes for admins.

appLinksJson string

Displays specific appLinks for the app. The value for each application link should be boolean.

authenticationPolicy string

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

autoSubmitToolbar boolean

Display auto submit toolbar.

enduserNote string

Application notes for end users.

groups string[]

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

hideIos boolean

Do not display application icon on mobile app.

hideWeb boolean

Do not display application icon to users.

logo string

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

requestIntegration boolean

Would you like Okta to add an integration for this app?

skipGroups boolean

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

skipUsers boolean

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

status string

Status of application. ("ACTIVE" or "INACTIVE").

users BookmarkUserArgs[]

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

label str

The Application's display name.

url str

The URL of the bookmark.

accessibility_error_redirect_url str

Custom error page URL.

accessibility_login_redirect_url str

Custom login page for this application.

accessibility_self_service bool

Enable self-service. By default, it is false.

admin_note str

Application notes for admins.

app_links_json str

Displays specific appLinks for the app. The value for each application link should be boolean.

authentication_policy str

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

auto_submit_toolbar bool

Display auto submit toolbar.

enduser_note str

Application notes for end users.

groups Sequence[str]

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

hide_ios bool

Do not display application icon on mobile app.

hide_web bool

Do not display application icon to users.

logo str

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

request_integration bool

Would you like Okta to add an integration for this app?

skip_groups bool

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

skip_users bool

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

status str

Status of application. ("ACTIVE" or "INACTIVE").

users Sequence[BookmarkUserArgs]

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

label String

The Application's display name.

url String

The URL of the bookmark.

accessibilityErrorRedirectUrl String

Custom error page URL.

accessibilityLoginRedirectUrl String

Custom login page for this application.

accessibilitySelfService Boolean

Enable self-service. By default, it is false.

adminNote String

Application notes for admins.

appLinksJson String

Displays specific appLinks for the app. The value for each application link should be boolean.

authenticationPolicy String

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

autoSubmitToolbar Boolean

Display auto submit toolbar.

enduserNote String

Application notes for end users.

groups List<String>

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

hideIos Boolean

Do not display application icon on mobile app.

hideWeb Boolean

Do not display application icon to users.

logo String

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

requestIntegration Boolean

Would you like Okta to add an integration for this app?

skipGroups Boolean

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

skipUsers Boolean

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

status String

Status of application. ("ACTIVE" or "INACTIVE").

users List<Property Map>

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

Outputs

All input properties are implicitly available as output properties. Additionally, the Bookmark resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

LogoUrl string

Direct link of application logo.

Name string

Name of the app.

SignOnMode string

Sign on mode of application.

Id string

The provider-assigned unique ID for this managed resource.

LogoUrl string

Direct link of application logo.

Name string

Name of the app.

SignOnMode string

Sign on mode of application.

id String

The provider-assigned unique ID for this managed resource.

logoUrl String

Direct link of application logo.

name String

Name of the app.

signOnMode String

Sign on mode of application.

id string

The provider-assigned unique ID for this managed resource.

logoUrl string

Direct link of application logo.

name string

Name of the app.

signOnMode string

Sign on mode of application.

id str

The provider-assigned unique ID for this managed resource.

logo_url str

Direct link of application logo.

name str

Name of the app.

sign_on_mode str

Sign on mode of application.

id String

The provider-assigned unique ID for this managed resource.

logoUrl String

Direct link of application logo.

name String

Name of the app.

signOnMode String

Sign on mode of application.

Look up Existing Bookmark Resource

Get an existing Bookmark resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: BookmarkState, opts?: CustomResourceOptions): Bookmark
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        accessibility_error_redirect_url: Optional[str] = None,
        accessibility_login_redirect_url: Optional[str] = None,
        accessibility_self_service: Optional[bool] = None,
        admin_note: Optional[str] = None,
        app_links_json: Optional[str] = None,
        authentication_policy: Optional[str] = None,
        auto_submit_toolbar: Optional[bool] = None,
        enduser_note: Optional[str] = None,
        groups: Optional[Sequence[str]] = None,
        hide_ios: Optional[bool] = None,
        hide_web: Optional[bool] = None,
        label: Optional[str] = None,
        logo: Optional[str] = None,
        logo_url: Optional[str] = None,
        name: Optional[str] = None,
        request_integration: Optional[bool] = None,
        sign_on_mode: Optional[str] = None,
        skip_groups: Optional[bool] = None,
        skip_users: Optional[bool] = None,
        status: Optional[str] = None,
        url: Optional[str] = None,
        users: Optional[Sequence[BookmarkUserArgs]] = None) -> Bookmark
func GetBookmark(ctx *Context, name string, id IDInput, state *BookmarkState, opts ...ResourceOption) (*Bookmark, error)
public static Bookmark Get(string name, Input<string> id, BookmarkState? state, CustomResourceOptions? opts = null)
public static Bookmark get(String name, Output<String> id, BookmarkState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AccessibilityErrorRedirectUrl string

Custom error page URL.

AccessibilityLoginRedirectUrl string

Custom login page for this application.

AccessibilitySelfService bool

Enable self-service. By default, it is false.

AdminNote string

Application notes for admins.

AppLinksJson string

Displays specific appLinks for the app. The value for each application link should be boolean.

AuthenticationPolicy string

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

AutoSubmitToolbar bool

Display auto submit toolbar.

EnduserNote string

Application notes for end users.

Groups List<string>

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

HideIos bool

Do not display application icon on mobile app.

HideWeb bool

Do not display application icon to users.

Label string

The Application's display name.

Logo string

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

LogoUrl string

Direct link of application logo.

Name string

Name of the app.

RequestIntegration bool

Would you like Okta to add an integration for this app?

SignOnMode string

Sign on mode of application.

SkipGroups bool

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

SkipUsers bool

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

Status string

Status of application. ("ACTIVE" or "INACTIVE").

Url string

The URL of the bookmark.

Users List<BookmarkUserArgs>

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

AccessibilityErrorRedirectUrl string

Custom error page URL.

AccessibilityLoginRedirectUrl string

Custom login page for this application.

AccessibilitySelfService bool

Enable self-service. By default, it is false.

AdminNote string

Application notes for admins.

AppLinksJson string

Displays specific appLinks for the app. The value for each application link should be boolean.

AuthenticationPolicy string

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

AutoSubmitToolbar bool

Display auto submit toolbar.

EnduserNote string

Application notes for end users.

Groups []string

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

HideIos bool

Do not display application icon on mobile app.

HideWeb bool

Do not display application icon to users.

Label string

The Application's display name.

Logo string

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

LogoUrl string

Direct link of application logo.

Name string

Name of the app.

RequestIntegration bool

Would you like Okta to add an integration for this app?

SignOnMode string

Sign on mode of application.

SkipGroups bool

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

SkipUsers bool

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

Status string

Status of application. ("ACTIVE" or "INACTIVE").

Url string

The URL of the bookmark.

Users []BookmarkUserArgs

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

accessibilityErrorRedirectUrl String

Custom error page URL.

accessibilityLoginRedirectUrl String

Custom login page for this application.

accessibilitySelfService Boolean

Enable self-service. By default, it is false.

adminNote String

Application notes for admins.

appLinksJson String

Displays specific appLinks for the app. The value for each application link should be boolean.

authenticationPolicy String

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

autoSubmitToolbar Boolean

Display auto submit toolbar.

enduserNote String

Application notes for end users.

groups List<String>

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

hideIos Boolean

Do not display application icon on mobile app.

hideWeb Boolean

Do not display application icon to users.

label String

The Application's display name.

logo String

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

logoUrl String

Direct link of application logo.

name String

Name of the app.

requestIntegration Boolean

Would you like Okta to add an integration for this app?

signOnMode String

Sign on mode of application.

skipGroups Boolean

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

skipUsers Boolean

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

status String

Status of application. ("ACTIVE" or "INACTIVE").

url String

The URL of the bookmark.

users List<BookmarkUserArgs>

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

accessibilityErrorRedirectUrl string

Custom error page URL.

accessibilityLoginRedirectUrl string

Custom login page for this application.

accessibilitySelfService boolean

Enable self-service. By default, it is false.

adminNote string

Application notes for admins.

appLinksJson string

Displays specific appLinks for the app. The value for each application link should be boolean.

authenticationPolicy string

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

autoSubmitToolbar boolean

Display auto submit toolbar.

enduserNote string

Application notes for end users.

groups string[]

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

hideIos boolean

Do not display application icon on mobile app.

hideWeb boolean

Do not display application icon to users.

label string

The Application's display name.

logo string

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

logoUrl string

Direct link of application logo.

name string

Name of the app.

requestIntegration boolean

Would you like Okta to add an integration for this app?

signOnMode string

Sign on mode of application.

skipGroups boolean

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

skipUsers boolean

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

status string

Status of application. ("ACTIVE" or "INACTIVE").

url string

The URL of the bookmark.

users BookmarkUserArgs[]

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

accessibility_error_redirect_url str

Custom error page URL.

accessibility_login_redirect_url str

Custom login page for this application.

accessibility_self_service bool

Enable self-service. By default, it is false.

admin_note str

Application notes for admins.

app_links_json str

Displays specific appLinks for the app. The value for each application link should be boolean.

authentication_policy str

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

auto_submit_toolbar bool

Display auto submit toolbar.

enduser_note str

Application notes for end users.

groups Sequence[str]

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

hide_ios bool

Do not display application icon on mobile app.

hide_web bool

Do not display application icon to users.

label str

The Application's display name.

logo str

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

logo_url str

Direct link of application logo.

name str

Name of the app.

request_integration bool

Would you like Okta to add an integration for this app?

sign_on_mode str

Sign on mode of application.

skip_groups bool

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

skip_users bool

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

status str

Status of application. ("ACTIVE" or "INACTIVE").

url str

The URL of the bookmark.

users Sequence[BookmarkUserArgs]

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

accessibilityErrorRedirectUrl String

Custom error page URL.

accessibilityLoginRedirectUrl String

Custom login page for this application.

accessibilitySelfService Boolean

Enable self-service. By default, it is false.

adminNote String

Application notes for admins.

appLinksJson String

Displays specific appLinks for the app. The value for each application link should be boolean.

authenticationPolicy String

The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.

autoSubmitToolbar Boolean

Display auto submit toolbar.

enduserNote String

Application notes for end users.

groups List<String>

Groups associated with the application.

Deprecated:

The direct configuration of groups in this app resource is deprecated, please ensure you use the resource okta_app_group_assignments for this functionality.

hideIos Boolean

Do not display application icon on mobile app.

hideWeb Boolean

Do not display application icon to users.

label String

The Application's display name.

logo String

Local file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.

logoUrl String

Direct link of application logo.

name String

Name of the app.

requestIntegration Boolean

Would you like Okta to add an integration for this app?

signOnMode String

Sign on mode of application.

skipGroups Boolean

Indicator that allows the app to skip groups sync (it's also can be provided during import). Default is false.

skipUsers Boolean

Indicator that allows the app to skip users sync (it's also can be provided during import). Default is false.

status String

Status of application. ("ACTIVE" or "INACTIVE").

url String

The URL of the bookmark.

users List<Property Map>

Users associated with the application.

Deprecated:

The direct configuration of users in this app resource is deprecated, please ensure you use the resource okta_app_user for this functionality.

Supporting Types

BookmarkUser

Id string

ID of the Application.

Password string
Scope string
Username string
Id string

ID of the Application.

Password string
Scope string
Username string
id String

ID of the Application.

password String
scope String
username String
id string

ID of the Application.

password string
scope string
username string
id str

ID of the Application.

password str
scope str
username str
id String

ID of the Application.

password String
scope String
username String

Import

A Bookmark App can be imported via the Okta ID.

 $ pulumi import okta:app/bookmark:Bookmark example &#60;app id&#62;

It’s also possible to import app without groups or/and users. In this case ID may look like this

 $ pulumi import okta:app/bookmark:Bookmark example &#60;app id&#62;/skip_users
 $ pulumi import okta:app/bookmark:Bookmark example &#60;app id&#62;/skip_users/skip_groups
 $ pulumi import okta:app/bookmark:Bookmark example &#60;app id&#62;/skip_groups

Package Details

Repository
Okta pulumi/pulumi-okta
License
Apache-2.0
Notes

This Pulumi package is based on the okta Terraform Provider.