1. Packages
  2. Okta
  3. API Docs
  4. app
  5. AutoLogin
Okta v4.8.0 published on Saturday, Mar 2, 2024 by Pulumi

okta.app.AutoLogin

Explore with Pulumi AI

okta logo
Okta v4.8.0 published on Saturday, Mar 2, 2024 by Pulumi

    This resource allows you to create and configure an Auto Login Okta Application.

    During an apply if there is change in status the app will first be activated or deactivated in accordance with the status change. Then, all other arguments that changed will be applied.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Okta = Pulumi.Okta;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Okta.App.AutoLogin("example", new()
        {
            CredentialsScheme = "EDIT_USERNAME_AND_PASSWORD",
            Label = "Example App",
            RevealPassword = true,
            SignOnRedirectUrl = "https://example.com",
            SignOnUrl = "https://example.com/login.html",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-okta/sdk/v4/go/okta/app"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := app.NewAutoLogin(ctx, "example", &app.AutoLoginArgs{
    			CredentialsScheme: pulumi.String("EDIT_USERNAME_AND_PASSWORD"),
    			Label:             pulumi.String("Example App"),
    			RevealPassword:    pulumi.Bool(true),
    			SignOnRedirectUrl: pulumi.String("https://example.com"),
    			SignOnUrl:         pulumi.String("https://example.com/login.html"),
    		})
    		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.AutoLogin;
    import com.pulumi.okta.app.AutoLoginArgs;
    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 AutoLogin("example", AutoLoginArgs.builder()        
                .credentialsScheme("EDIT_USERNAME_AND_PASSWORD")
                .label("Example App")
                .revealPassword(true)
                .signOnRedirectUrl("https://example.com")
                .signOnUrl("https://example.com/login.html")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_okta as okta
    
    example = okta.app.AutoLogin("example",
        credentials_scheme="EDIT_USERNAME_AND_PASSWORD",
        label="Example App",
        reveal_password=True,
        sign_on_redirect_url="https://example.com",
        sign_on_url="https://example.com/login.html")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as okta from "@pulumi/okta";
    
    const example = new okta.app.AutoLogin("example", {
        credentialsScheme: "EDIT_USERNAME_AND_PASSWORD",
        label: "Example App",
        revealPassword: true,
        signOnRedirectUrl: "https://example.com",
        signOnUrl: "https://example.com/login.html",
    });
    
    resources:
      example:
        type: okta:app:AutoLogin
        properties:
          credentialsScheme: EDIT_USERNAME_AND_PASSWORD
          label: Example App
          revealPassword: true
          signOnRedirectUrl: https://example.com
          signOnUrl: https://example.com/login.html
    

    Pre-configured application

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Okta = Pulumi.Okta;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Okta.App.AutoLogin("example", new()
        {
            AppSettingsJson = @"{
        ""domain"": ""okta"",
        ""afwOnly"": false
    }
    
    ",
            Label = "Google Example App",
            PreconfiguredApp = "google",
            Status = "ACTIVE",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-okta/sdk/v4/go/okta/app"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := app.NewAutoLogin(ctx, "example", &app.AutoLoginArgs{
    			AppSettingsJson:  pulumi.String("{\n    \"domain\": \"okta\",\n    \"afwOnly\": false\n}\n\n"),
    			Label:            pulumi.String("Google Example App"),
    			PreconfiguredApp: pulumi.String("google"),
    			Status:           pulumi.String("ACTIVE"),
    		})
    		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.AutoLogin;
    import com.pulumi.okta.app.AutoLoginArgs;
    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 AutoLogin("example", AutoLoginArgs.builder()        
                .appSettingsJson("""
    {
        "domain": "okta",
        "afwOnly": false
    }
    
                """)
                .label("Google Example App")
                .preconfiguredApp("google")
                .status("ACTIVE")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_okta as okta
    
    example = okta.app.AutoLogin("example",
        app_settings_json="""{
        "domain": "okta",
        "afwOnly": false
    }
    
    """,
        label="Google Example App",
        preconfigured_app="google",
        status="ACTIVE")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as okta from "@pulumi/okta";
    
    const example = new okta.app.AutoLogin("example", {
        appSettingsJson: `{
        "domain": "okta",
        "afwOnly": false
    }
    
    `,
        label: "Google Example App",
        preconfiguredApp: "google",
        status: "ACTIVE",
    });
    
    resources:
      example:
        type: okta:app:AutoLogin
        properties:
          appSettingsJson: |+
            {
                "domain": "okta",
                "afwOnly": false
            }        
    
          label: Google Example App
          preconfiguredApp: google
          status: ACTIVE
    

    Create AutoLogin Resource

    new AutoLogin(name: string, args: AutoLoginArgs, opts?: CustomResourceOptions);
    @overload
    def AutoLogin(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,
                  app_settings_json: Optional[str] = None,
                  auto_submit_toolbar: Optional[bool] = None,
                  credentials_scheme: Optional[str] = None,
                  enduser_note: Optional[str] = None,
                  hide_ios: Optional[bool] = None,
                  hide_web: Optional[bool] = None,
                  label: Optional[str] = None,
                  logo: Optional[str] = None,
                  preconfigured_app: Optional[str] = None,
                  reveal_password: Optional[bool] = None,
                  shared_password: Optional[str] = None,
                  shared_username: Optional[str] = None,
                  sign_on_redirect_url: Optional[str] = None,
                  sign_on_url: Optional[str] = None,
                  status: 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)
    @overload
    def AutoLogin(resource_name: str,
                  args: AutoLoginArgs,
                  opts: Optional[ResourceOptions] = None)
    func NewAutoLogin(ctx *Context, name string, args AutoLoginArgs, opts ...ResourceOption) (*AutoLogin, error)
    public AutoLogin(string name, AutoLoginArgs args, CustomResourceOptions? opts = null)
    public AutoLogin(String name, AutoLoginArgs args)
    public AutoLogin(String name, AutoLoginArgs args, CustomResourceOptions options)
    
    type: okta:app:AutoLogin
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AutoLoginArgs
    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 AutoLoginArgs
    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 AutoLoginArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutoLoginArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AutoLoginArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Label string
    The Application's display name.
    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.
    AppSettingsJson string
    Application settings in JSON format.
    AutoSubmitToolbar bool
    Display auto submit toolbar.
    CredentialsScheme string
    One of: "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.
    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.
    PreconfiguredApp string
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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
    SignOnRedirectUrl string
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    SignOnUrl string
    App login page URL
    Status string
    The status of the application, by default, it is "ACTIVE".
    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".
    Label string
    The Application's display name.
    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.
    AppSettingsJson string
    Application settings in JSON format.
    AutoSubmitToolbar bool
    Display auto submit toolbar.
    CredentialsScheme string
    One of: "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.
    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.
    PreconfiguredApp string
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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
    SignOnRedirectUrl string
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    SignOnUrl string
    App login page URL
    Status string
    The status of the application, by default, it is "ACTIVE".
    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".
    label String
    The Application's display name.
    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.
    appSettingsJson String
    Application settings in JSON format.
    autoSubmitToolbar Boolean
    Display auto submit toolbar.
    credentialsScheme String
    One of: "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.
    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.
    preconfiguredApp String
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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
    signOnRedirectUrl String
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    signOnUrl String
    App login page URL
    status String
    The status of the application, by default, it is "ACTIVE".
    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".
    label string
    The Application's display name.
    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.
    appSettingsJson string
    Application settings in JSON format.
    autoSubmitToolbar boolean
    Display auto submit toolbar.
    credentialsScheme string
    One of: "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.
    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.
    preconfiguredApp string
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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
    signOnRedirectUrl string
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    signOnUrl string
    App login page URL
    status string
    The status of the application, by default, it is "ACTIVE".
    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".
    label str
    The Application's display name.
    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.
    app_settings_json str
    Application settings in JSON format.
    auto_submit_toolbar bool
    Display auto submit toolbar.
    credentials_scheme str
    One of: "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.
    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.
    preconfigured_app str
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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_redirect_url str
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    sign_on_url str
    App login page URL
    status str
    The status of the application, by default, it is "ACTIVE".
    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".
    label String
    The Application's display name.
    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.
    appSettingsJson String
    Application settings in JSON format.
    autoSubmitToolbar Boolean
    Display auto submit toolbar.
    credentialsScheme String
    One of: "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.
    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.
    preconfiguredApp String
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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
    signOnRedirectUrl String
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    signOnUrl String
    App login page URL
    status String
    The status of the application, by default, it is "ACTIVE".
    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".

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AutoLogin 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 the 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 the 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 the 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 the 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 the 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 the application.

    Look up Existing AutoLogin Resource

    Get an existing AutoLogin 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?: AutoLoginState, opts?: CustomResourceOptions): AutoLogin
    @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,
            app_settings_json: Optional[str] = None,
            auto_submit_toolbar: Optional[bool] = None,
            credentials_scheme: Optional[str] = None,
            enduser_note: Optional[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,
            preconfigured_app: Optional[str] = None,
            reveal_password: Optional[bool] = None,
            shared_password: Optional[str] = None,
            shared_username: Optional[str] = None,
            sign_on_mode: Optional[str] = None,
            sign_on_redirect_url: Optional[str] = None,
            sign_on_url: Optional[str] = None,
            status: 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) -> AutoLogin
    func GetAutoLogin(ctx *Context, name string, id IDInput, state *AutoLoginState, opts ...ResourceOption) (*AutoLogin, error)
    public static AutoLogin Get(string name, Input<string> id, AutoLoginState? state, CustomResourceOptions? opts = null)
    public static AutoLogin get(String name, Output<String> id, AutoLoginState 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.
    AppSettingsJson string
    Application settings in JSON format.
    AutoSubmitToolbar bool
    Display auto submit toolbar.
    CredentialsScheme string
    One of: "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.
    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 assigned to the application by Okta.
    PreconfiguredApp string
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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 the application.
    SignOnRedirectUrl string
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    SignOnUrl string
    App login page URL
    Status string
    The status of the application, by default, it is "ACTIVE".
    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".
    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.
    AppSettingsJson string
    Application settings in JSON format.
    AutoSubmitToolbar bool
    Display auto submit toolbar.
    CredentialsScheme string
    One of: "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.
    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 assigned to the application by Okta.
    PreconfiguredApp string
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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 the application.
    SignOnRedirectUrl string
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    SignOnUrl string
    App login page URL
    Status string
    The status of the application, by default, it is "ACTIVE".
    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".
    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.
    appSettingsJson String
    Application settings in JSON format.
    autoSubmitToolbar Boolean
    Display auto submit toolbar.
    credentialsScheme String
    One of: "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.
    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 assigned to the application by Okta.
    preconfiguredApp String
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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 the application.
    signOnRedirectUrl String
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    signOnUrl String
    App login page URL
    status String
    The status of the application, by default, it is "ACTIVE".
    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".
    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.
    appSettingsJson string
    Application settings in JSON format.
    autoSubmitToolbar boolean
    Display auto submit toolbar.
    credentialsScheme string
    One of: "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.
    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 assigned to the application by Okta.
    preconfiguredApp string
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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 the application.
    signOnRedirectUrl string
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    signOnUrl string
    App login page URL
    status string
    The status of the application, by default, it is "ACTIVE".
    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".
    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.
    app_settings_json str
    Application settings in JSON format.
    auto_submit_toolbar bool
    Display auto submit toolbar.
    credentials_scheme str
    One of: "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.
    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 assigned to the application by Okta.
    preconfigured_app str
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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 the application.
    sign_on_redirect_url str
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    sign_on_url str
    App login page URL
    status str
    The status of the application, by default, it is "ACTIVE".
    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".
    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.
    appSettingsJson String
    Application settings in JSON format.
    autoSubmitToolbar Boolean
    Display auto submit toolbar.
    credentialsScheme String
    One of: "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.
    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 assigned to the application by Okta.
    preconfiguredApp String
    Tells Okta to use an existing application in their application catalog, as opposed to a custom application.
    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 the application.
    signOnRedirectUrl String
    Redirect URL; if going to the login page URL redirects to another page, then enter that URL here
    signOnUrl String
    App login page URL
    status String
    The status of the application, by default, it is "ACTIVE".
    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".

    Import

    Okta Auto Login App can be imported via the Okta ID.

    $ pulumi import okta:app/autoLogin:AutoLogin example &#60;app id&#62;
    

    Package Details

    Repository
    Okta pulumi/pulumi-okta
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the okta Terraform Provider.
    okta logo
    Okta v4.8.0 published on Saturday, Mar 2, 2024 by Pulumi