okta logo
Okta v3.21.0, Mar 15 23

okta.app.ThreeField

This resource allows you to create and configure a Three Field Application.

Example Usage

Coming soon!

Coming soon!

package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.okta.app.ThreeField;
import com.pulumi.okta.app.ThreeFieldArgs;
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 ThreeField("example", ThreeFieldArgs.builder()        
            .credentialsScheme("EDIT_USERNAME_AND_PASSWORD")
            .label("Example App")
            .revealPassword(true)
            .signOnRedirectUrl("https://example.com")
            .signOnUrl("https://example.com/login.html")
            .build());

    }
}

Coming soon!

Coming soon!

resources:
  example:
    type: okta:app:ThreeField
    properties:
      credentialsScheme: EDIT_USERNAME_AND_PASSWORD
      label: Example App
      revealPassword: true
      signOnRedirectUrl: https://example.com
      signOnUrl: https://example.com/login.html

Create ThreeField Resource

new ThreeField(name: string, args: ThreeFieldArgs, opts?: CustomResourceOptions);
@overload
def ThreeField(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,
               auto_submit_toolbar: Optional[bool] = None,
               button_selector: Optional[str] = None,
               credentials_scheme: Optional[str] = None,
               enduser_note: Optional[str] = None,
               extra_field_selector: Optional[str] = None,
               extra_field_value: 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,
               password_selector: Optional[str] = None,
               reveal_password: Optional[bool] = None,
               shared_password: Optional[str] = None,
               shared_username: Optional[str] = None,
               skip_groups: Optional[bool] = None,
               skip_users: Optional[bool] = None,
               status: Optional[str] = None,
               url: Optional[str] = None,
               url_regex: Optional[str] = None,
               user_name_template: Optional[str] = None,
               user_name_template_push_status: Optional[str] = None,
               user_name_template_suffix: Optional[str] = None,
               user_name_template_type: Optional[str] = None,
               username_selector: Optional[str] = None,
               users: Optional[Sequence[ThreeFieldUserArgs]] = None)
@overload
def ThreeField(resource_name: str,
               args: ThreeFieldArgs,
               opts: Optional[ResourceOptions] = None)
func NewThreeField(ctx *Context, name string, args ThreeFieldArgs, opts ...ResourceOption) (*ThreeField, error)
public ThreeField(string name, ThreeFieldArgs args, CustomResourceOptions? opts = null)
public ThreeField(String name, ThreeFieldArgs args)
public ThreeField(String name, ThreeFieldArgs args, CustomResourceOptions options)
type: okta:app:ThreeField
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ThreeFieldArgs
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 ThreeFieldArgs
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 ThreeFieldArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ThreeFieldArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ThreeFieldArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

ThreeField 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 ThreeField resource accepts the following input properties:

ButtonSelector string

Login button field CSS selector.

ExtraFieldSelector string

Extra field CSS selector.

ExtraFieldValue string

Value for extra form field.

Label string

The display name of the Application.

PasswordSelector string

Login password field CSS selector.

Url string

Login URL.

UsernameSelector string

Login username field CSS selector.

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

AutoSubmitToolbar bool

Display auto submit toolbar.

CredentialsScheme string

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

EnduserNote string

Application notes for end users.

Groups List<string>

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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.

RevealPassword bool

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

SharedPassword string

Shared password, required for certain schemes.

SharedUsername string

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

UrlRegex string

A regex that further restricts URL to the specified regex.

UserNameTemplate string

Username template. Default: "${source.login}"

UserNameTemplatePushStatus string

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

UserNameTemplateSuffix string

Username template suffix.

UserNameTemplateType string

Username template type. Default: "BUILT_IN".

Users List<ThreeFieldUserArgs>

The users assigned to the application. See okta.app.User for a more flexible approach.

Deprecated:

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

ButtonSelector string

Login button field CSS selector.

ExtraFieldSelector string

Extra field CSS selector.

ExtraFieldValue string

Value for extra form field.

Label string

The display name of the Application.

PasswordSelector string

Login password field CSS selector.

Url string

Login URL.

UsernameSelector string

Login username field CSS selector.

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

AutoSubmitToolbar bool

Display auto submit toolbar.

CredentialsScheme string

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

EnduserNote string

Application notes for end users.

Groups []string

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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.

RevealPassword bool

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

SharedPassword string

Shared password, required for certain schemes.

SharedUsername string

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

UrlRegex string

A regex that further restricts URL to the specified regex.

UserNameTemplate string

Username template. Default: "${source.login}"

UserNameTemplatePushStatus string

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

UserNameTemplateSuffix string

Username template suffix.

UserNameTemplateType string

Username template type. Default: "BUILT_IN".

Users []ThreeFieldUserArgs

The users assigned to the application. See okta.app.User for a more flexible approach.

Deprecated:

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

buttonSelector String

Login button field CSS selector.

extraFieldSelector String

Extra field CSS selector.

extraFieldValue String

Value for extra form field.

label String

The display name of the Application.

passwordSelector String

Login password field CSS selector.

url String

Login URL.

usernameSelector String

Login username field CSS selector.

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

autoSubmitToolbar Boolean

Display auto submit toolbar.

credentialsScheme String

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

enduserNote String

Application notes for end users.

groups List<String>

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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.

revealPassword Boolean

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

sharedPassword String

Shared password, required for certain schemes.

sharedUsername String

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

urlRegex String

A regex that further restricts URL to the specified regex.

userNameTemplate String

Username template. Default: "${source.login}"

userNameTemplatePushStatus String

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

userNameTemplateSuffix String

Username template suffix.

userNameTemplateType String

Username template type. Default: "BUILT_IN".

users List<ThreeFieldUserArgs>

The users assigned to the application. See okta.app.User for a more flexible approach.

Deprecated:

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

buttonSelector string

Login button field CSS selector.

extraFieldSelector string

Extra field CSS selector.

extraFieldValue string

Value for extra form field.

label string

The display name of the Application.

passwordSelector string

Login password field CSS selector.

url string

Login URL.

usernameSelector string

Login username field CSS selector.

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

autoSubmitToolbar boolean

Display auto submit toolbar.

credentialsScheme string

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

enduserNote string

Application notes for end users.

groups string[]

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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.

revealPassword boolean

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

sharedPassword string

Shared password, required for certain schemes.

sharedUsername string

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

urlRegex string

A regex that further restricts URL to the specified regex.

userNameTemplate string

Username template. Default: "${source.login}"

userNameTemplatePushStatus string

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

userNameTemplateSuffix string

Username template suffix.

userNameTemplateType string

Username template type. Default: "BUILT_IN".

users ThreeFieldUserArgs[]

The users assigned to the application. See okta.app.User for a more flexible approach.

Deprecated:

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

button_selector str

Login button field CSS selector.

extra_field_selector str

Extra field CSS selector.

extra_field_value str

Value for extra form field.

label str

The display name of the Application.

password_selector str

Login password field CSS selector.

url str

Login URL.

username_selector str

Login username field CSS selector.

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

auto_submit_toolbar bool

Display auto submit toolbar.

credentials_scheme str

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

enduser_note str

Application notes for end users.

groups Sequence[str]

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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.

reveal_password bool

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

shared_password str

Shared password, required for certain schemes.

shared_username str

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

url_regex str

A regex that further restricts URL to the specified regex.

user_name_template str

Username template. Default: "${source.login}"

user_name_template_push_status str

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

user_name_template_suffix str

Username template suffix.

user_name_template_type str

Username template type. Default: "BUILT_IN".

users Sequence[ThreeFieldUserArgs]

The users assigned to the application. See okta.app.User for a more flexible approach.

Deprecated:

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

buttonSelector String

Login button field CSS selector.

extraFieldSelector String

Extra field CSS selector.

extraFieldValue String

Value for extra form field.

label String

The display name of the Application.

passwordSelector String

Login password field CSS selector.

url String

Login URL.

usernameSelector String

Login username field CSS selector.

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

autoSubmitToolbar Boolean

Display auto submit toolbar.

credentialsScheme String

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

enduserNote String

Application notes for end users.

groups List<String>

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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.

revealPassword Boolean

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

sharedPassword String

Shared password, required for certain schemes.

sharedUsername String

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

urlRegex String

A regex that further restricts URL to the specified regex.

userNameTemplate String

Username template. Default: "${source.login}"

userNameTemplatePushStatus String

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

userNameTemplateSuffix String

Username template suffix.

userNameTemplateType String

Username template type. Default: "BUILT_IN".

users List<Property Map>

The users assigned to the application. See okta.app.User for a more flexible approach.

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 ThreeField 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 assigned to the application by Okta.

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 assigned to the application by Okta.

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 assigned to the application by Okta.

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 assigned to the application by Okta.

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 assigned to the application by Okta.

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 assigned to the application by Okta.

signOnMode String

Sign-on mode of application.

Look up Existing ThreeField Resource

Get an existing ThreeField 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?: ThreeFieldState, opts?: CustomResourceOptions): ThreeField
@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,
        auto_submit_toolbar: Optional[bool] = None,
        button_selector: Optional[str] = None,
        credentials_scheme: Optional[str] = None,
        enduser_note: Optional[str] = None,
        extra_field_selector: Optional[str] = None,
        extra_field_value: 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,
        password_selector: Optional[str] = None,
        reveal_password: Optional[bool] = None,
        shared_password: Optional[str] = None,
        shared_username: Optional[str] = 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,
        url_regex: Optional[str] = None,
        user_name_template: Optional[str] = None,
        user_name_template_push_status: Optional[str] = None,
        user_name_template_suffix: Optional[str] = None,
        user_name_template_type: Optional[str] = None,
        username_selector: Optional[str] = None,
        users: Optional[Sequence[ThreeFieldUserArgs]] = None) -> ThreeField
func GetThreeField(ctx *Context, name string, id IDInput, state *ThreeFieldState, opts ...ResourceOption) (*ThreeField, error)
public static ThreeField Get(string name, Input<string> id, ThreeFieldState? state, CustomResourceOptions? opts = null)
public static ThreeField get(String name, Output<String> id, ThreeFieldState 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

AutoSubmitToolbar bool

Display auto submit toolbar.

ButtonSelector string

Login button field CSS selector.

CredentialsScheme string

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

EnduserNote string

Application notes for end users.

ExtraFieldSelector string

Extra field CSS selector.

ExtraFieldValue string

Value for extra form field.

Groups List<string>

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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 display name of the Application.

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 assigned to the application by Okta.

PasswordSelector string

Login password field CSS selector.

RevealPassword bool

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

SharedPassword string

Shared password, required for certain schemes.

SharedUsername string

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

Url string

Login URL.

UrlRegex string

A regex that further restricts URL to the specified regex.

UserNameTemplate string

Username template. Default: "${source.login}"

UserNameTemplatePushStatus string

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

UserNameTemplateSuffix string

Username template suffix.

UserNameTemplateType string

Username template type. Default: "BUILT_IN".

UsernameSelector string

Login username field CSS selector.

Users List<ThreeFieldUserArgs>

The users assigned to the application. See okta.app.User for a more flexible approach.

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

AutoSubmitToolbar bool

Display auto submit toolbar.

ButtonSelector string

Login button field CSS selector.

CredentialsScheme string

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

EnduserNote string

Application notes for end users.

ExtraFieldSelector string

Extra field CSS selector.

ExtraFieldValue string

Value for extra form field.

Groups []string

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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 display name of the Application.

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 assigned to the application by Okta.

PasswordSelector string

Login password field CSS selector.

RevealPassword bool

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

SharedPassword string

Shared password, required for certain schemes.

SharedUsername string

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

Url string

Login URL.

UrlRegex string

A regex that further restricts URL to the specified regex.

UserNameTemplate string

Username template. Default: "${source.login}"

UserNameTemplatePushStatus string

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

UserNameTemplateSuffix string

Username template suffix.

UserNameTemplateType string

Username template type. Default: "BUILT_IN".

UsernameSelector string

Login username field CSS selector.

Users []ThreeFieldUserArgs

The users assigned to the application. See okta.app.User for a more flexible approach.

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

autoSubmitToolbar Boolean

Display auto submit toolbar.

buttonSelector String

Login button field CSS selector.

credentialsScheme String

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

enduserNote String

Application notes for end users.

extraFieldSelector String

Extra field CSS selector.

extraFieldValue String

Value for extra form field.

groups List<String>

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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 display name of the Application.

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 assigned to the application by Okta.

passwordSelector String

Login password field CSS selector.

revealPassword Boolean

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

sharedPassword String

Shared password, required for certain schemes.

sharedUsername String

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

url String

Login URL.

urlRegex String

A regex that further restricts URL to the specified regex.

userNameTemplate String

Username template. Default: "${source.login}"

userNameTemplatePushStatus String

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

userNameTemplateSuffix String

Username template suffix.

userNameTemplateType String

Username template type. Default: "BUILT_IN".

usernameSelector String

Login username field CSS selector.

users List<ThreeFieldUserArgs>

The users assigned to the application. See okta.app.User for a more flexible approach.

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

autoSubmitToolbar boolean

Display auto submit toolbar.

buttonSelector string

Login button field CSS selector.

credentialsScheme string

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

enduserNote string

Application notes for end users.

extraFieldSelector string

Extra field CSS selector.

extraFieldValue string

Value for extra form field.

groups string[]

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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 display name of the Application.

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 assigned to the application by Okta.

passwordSelector string

Login password field CSS selector.

revealPassword boolean

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

sharedPassword string

Shared password, required for certain schemes.

sharedUsername string

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

url string

Login URL.

urlRegex string

A regex that further restricts URL to the specified regex.

userNameTemplate string

Username template. Default: "${source.login}"

userNameTemplatePushStatus string

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

userNameTemplateSuffix string

Username template suffix.

userNameTemplateType string

Username template type. Default: "BUILT_IN".

usernameSelector string

Login username field CSS selector.

users ThreeFieldUserArgs[]

The users assigned to the application. See okta.app.User for a more flexible approach.

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

auto_submit_toolbar bool

Display auto submit toolbar.

button_selector str

Login button field CSS selector.

credentials_scheme str

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

enduser_note str

Application notes for end users.

extra_field_selector str

Extra field CSS selector.

extra_field_value str

Value for extra form field.

groups Sequence[str]

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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 display name of the Application.

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 assigned to the application by Okta.

password_selector str

Login password field CSS selector.

reveal_password bool

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

shared_password str

Shared password, required for certain schemes.

shared_username str

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

url str

Login URL.

url_regex str

A regex that further restricts URL to the specified regex.

user_name_template str

Username template. Default: "${source.login}"

user_name_template_push_status str

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

user_name_template_suffix str

Username template suffix.

user_name_template_type str

Username template type. Default: "BUILT_IN".

username_selector str

Login username field CSS selector.

users Sequence[ThreeFieldUserArgs]

The users assigned to the application. See okta.app.User for a more flexible approach.

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

autoSubmitToolbar Boolean

Display auto submit toolbar.

buttonSelector String

Login button field CSS selector.

credentialsScheme String

Application credentials scheme. Can be set to "EDIT_USERNAME_AND_PASSWORD", "ADMIN_SETS_CREDENTIALS", "EDIT_PASSWORD_ONLY", "EXTERNAL_PASSWORD_SYNC", or "SHARED_USERNAME_AND_PASSWORD".

enduserNote String

Application notes for end users.

extraFieldSelector String

Extra field CSS selector.

extraFieldValue String

Value for extra form field.

groups List<String>

Groups associated with the application. See okta.app.GroupAssignment for a more flexible approach.

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 display name of the Application.

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 assigned to the application by Okta.

passwordSelector String

Login password field CSS selector.

revealPassword Boolean

Allow user to reveal password. It can not be set to true if credentials_scheme is "ADMIN_SETS_CREDENTIALS", "SHARED_USERNAME_AND_PASSWORD" or "EXTERNAL_PASSWORD_SYNC".

sharedPassword String

Shared password, required for certain schemes.

sharedUsername String

Shared username, required for certain schemes.

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. By default, it is "ACTIVE".

url String

Login URL.

urlRegex String

A regex that further restricts URL to the specified regex.

userNameTemplate String

Username template. Default: "${source.login}"

userNameTemplatePushStatus String

Push username on update. Valid values: "PUSH" and "DONT_PUSH".

userNameTemplateSuffix String

Username template suffix.

userNameTemplateType String

Username template type. Default: "BUILT_IN".

usernameSelector String

Login username field CSS selector.

users List<Property Map>

The users assigned to the application. See okta.app.User for a more flexible approach.

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

ThreeFieldUser

Id string
Password string
Scope string
Username string
Id string
Password string
Scope string
Username string
id String
password String
scope String
username String
id string
password string
scope string
username string
id str
password str
scope str
username str
id String
password String
scope String
username String

Import

A Three Field App can be imported via the Okta ID.

 $ pulumi import okta:app/threeField:ThreeField 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/threeField:ThreeField example &#60;app id&#62;/skip_users
 $ pulumi import okta:app/threeField:ThreeField example &#60;app id&#62;/skip_users/skip_groups
 $ pulumi import okta:app/threeField:ThreeField 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.