okta.app.Swa
Explore with Pulumi AI
Creates a SWA Application.
This resource allows you to create and configure a SWA 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
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";
const example = new okta.app.Swa("example", {
    label: "example",
    buttonField: "btn-login",
    passwordField: "txtbox-password",
    usernameField: "txtbox-username",
    url: "https://example.com/login.html",
});
import pulumi
import pulumi_okta as okta
example = okta.app.Swa("example",
    label="example",
    button_field="btn-login",
    password_field="txtbox-password",
    username_field="txtbox-username",
    url="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.NewSwa(ctx, "example", &app.SwaArgs{
			Label:         pulumi.String("example"),
			ButtonField:   pulumi.String("btn-login"),
			PasswordField: pulumi.String("txtbox-password"),
			UsernameField: pulumi.String("txtbox-username"),
			Url:           pulumi.String("https://example.com/login.html"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Okta = Pulumi.Okta;
return await Deployment.RunAsync(() => 
{
    var example = new Okta.App.Swa("example", new()
    {
        Label = "example",
        ButtonField = "btn-login",
        PasswordField = "txtbox-password",
        UsernameField = "txtbox-username",
        Url = "https://example.com/login.html",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.okta.app.Swa;
import com.pulumi.okta.app.SwaArgs;
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 Swa("example", SwaArgs.builder()
            .label("example")
            .buttonField("btn-login")
            .passwordField("txtbox-password")
            .usernameField("txtbox-username")
            .url("https://example.com/login.html")
            .build());
    }
}
resources:
  example:
    type: okta:app:Swa
    properties:
      label: example
      buttonField: btn-login
      passwordField: txtbox-password
      usernameField: txtbox-username
      url: https://example.com/login.html
Create Swa Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Swa(name: string, args: SwaArgs, opts?: CustomResourceOptions);@overload
def Swa(resource_name: str,
        args: SwaArgs,
        opts: Optional[ResourceOptions] = None)
@overload
def Swa(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        label: Optional[str] = None,
        logo: Optional[str] = None,
        username_field: Optional[str] = None,
        accessibility_login_redirect_url: Optional[str] = None,
        app_links_json: Optional[str] = None,
        auto_submit_toolbar: Optional[bool] = None,
        button_field: Optional[str] = None,
        checkbox: Optional[str] = None,
        enduser_note: Optional[str] = None,
        hide_ios: Optional[bool] = None,
        password_field: Optional[str] = None,
        admin_note: Optional[str] = None,
        accessibility_self_service: Optional[bool] = None,
        hide_web: Optional[bool] = None,
        preconfigured_app: Optional[str] = None,
        redirect_url: Optional[str] = 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,
        accessibility_error_redirect_url: Optional[str] = None)func NewSwa(ctx *Context, name string, args SwaArgs, opts ...ResourceOption) (*Swa, error)public Swa(string name, SwaArgs args, CustomResourceOptions? opts = null)type: okta:app:Swa
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SwaArgs
- 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 SwaArgs
- 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 SwaArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SwaArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SwaArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var swaResource = new Okta.App.Swa("swaResource", new()
{
    Label = "string",
    Logo = "string",
    UsernameField = "string",
    AccessibilityLoginRedirectUrl = "string",
    AppLinksJson = "string",
    AutoSubmitToolbar = false,
    ButtonField = "string",
    Checkbox = "string",
    EnduserNote = "string",
    HideIos = false,
    PasswordField = "string",
    AdminNote = "string",
    AccessibilitySelfService = false,
    HideWeb = false,
    PreconfiguredApp = "string",
    RedirectUrl = "string",
    Status = "string",
    Url = "string",
    UrlRegex = "string",
    UserNameTemplate = "string",
    UserNameTemplatePushStatus = "string",
    UserNameTemplateSuffix = "string",
    UserNameTemplateType = "string",
    AccessibilityErrorRedirectUrl = "string",
});
example, err := app.NewSwa(ctx, "swaResource", &app.SwaArgs{
	Label:                         pulumi.String("string"),
	Logo:                          pulumi.String("string"),
	UsernameField:                 pulumi.String("string"),
	AccessibilityLoginRedirectUrl: pulumi.String("string"),
	AppLinksJson:                  pulumi.String("string"),
	AutoSubmitToolbar:             pulumi.Bool(false),
	ButtonField:                   pulumi.String("string"),
	Checkbox:                      pulumi.String("string"),
	EnduserNote:                   pulumi.String("string"),
	HideIos:                       pulumi.Bool(false),
	PasswordField:                 pulumi.String("string"),
	AdminNote:                     pulumi.String("string"),
	AccessibilitySelfService:      pulumi.Bool(false),
	HideWeb:                       pulumi.Bool(false),
	PreconfiguredApp:              pulumi.String("string"),
	RedirectUrl:                   pulumi.String("string"),
	Status:                        pulumi.String("string"),
	Url:                           pulumi.String("string"),
	UrlRegex:                      pulumi.String("string"),
	UserNameTemplate:              pulumi.String("string"),
	UserNameTemplatePushStatus:    pulumi.String("string"),
	UserNameTemplateSuffix:        pulumi.String("string"),
	UserNameTemplateType:          pulumi.String("string"),
	AccessibilityErrorRedirectUrl: pulumi.String("string"),
})
var swaResource = new Swa("swaResource", SwaArgs.builder()
    .label("string")
    .logo("string")
    .usernameField("string")
    .accessibilityLoginRedirectUrl("string")
    .appLinksJson("string")
    .autoSubmitToolbar(false)
    .buttonField("string")
    .checkbox("string")
    .enduserNote("string")
    .hideIos(false)
    .passwordField("string")
    .adminNote("string")
    .accessibilitySelfService(false)
    .hideWeb(false)
    .preconfiguredApp("string")
    .redirectUrl("string")
    .status("string")
    .url("string")
    .urlRegex("string")
    .userNameTemplate("string")
    .userNameTemplatePushStatus("string")
    .userNameTemplateSuffix("string")
    .userNameTemplateType("string")
    .accessibilityErrorRedirectUrl("string")
    .build());
swa_resource = okta.app.Swa("swaResource",
    label="string",
    logo="string",
    username_field="string",
    accessibility_login_redirect_url="string",
    app_links_json="string",
    auto_submit_toolbar=False,
    button_field="string",
    checkbox="string",
    enduser_note="string",
    hide_ios=False,
    password_field="string",
    admin_note="string",
    accessibility_self_service=False,
    hide_web=False,
    preconfigured_app="string",
    redirect_url="string",
    status="string",
    url="string",
    url_regex="string",
    user_name_template="string",
    user_name_template_push_status="string",
    user_name_template_suffix="string",
    user_name_template_type="string",
    accessibility_error_redirect_url="string")
const swaResource = new okta.app.Swa("swaResource", {
    label: "string",
    logo: "string",
    usernameField: "string",
    accessibilityLoginRedirectUrl: "string",
    appLinksJson: "string",
    autoSubmitToolbar: false,
    buttonField: "string",
    checkbox: "string",
    enduserNote: "string",
    hideIos: false,
    passwordField: "string",
    adminNote: "string",
    accessibilitySelfService: false,
    hideWeb: false,
    preconfiguredApp: "string",
    redirectUrl: "string",
    status: "string",
    url: "string",
    urlRegex: "string",
    userNameTemplate: "string",
    userNameTemplatePushStatus: "string",
    userNameTemplateSuffix: "string",
    userNameTemplateType: "string",
    accessibilityErrorRedirectUrl: "string",
});
type: okta:app:Swa
properties:
    accessibilityErrorRedirectUrl: string
    accessibilityLoginRedirectUrl: string
    accessibilitySelfService: false
    adminNote: string
    appLinksJson: string
    autoSubmitToolbar: false
    buttonField: string
    checkbox: string
    enduserNote: string
    hideIos: false
    hideWeb: false
    label: string
    logo: string
    passwordField: string
    preconfiguredApp: string
    redirectUrl: string
    status: string
    url: string
    urlRegex: string
    userNameTemplate: string
    userNameTemplatePushStatus: string
    userNameTemplateSuffix: string
    userNameTemplateType: string
    usernameField: string
Swa Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Swa resource accepts the following input properties:
- Label string
- The Application's display name.
- AccessibilityError stringRedirect Url 
- Custom error page URL
- AccessibilityLogin stringRedirect Url 
- Custom login page URL
- AccessibilitySelf boolService 
- Enable self service. Default is false
- AdminNote string
- Application notes for admins.
- AppLinks stringJson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- AutoSubmit boolToolbar 
- Display auto submit toolbar
- string
- Login button field
- Checkbox string
- CSS selector for the checkbox
- 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.
- PasswordField string
- Login password field
- PreconfiguredApp string
- Preconfigured app name
- RedirectUrl string
- If going to the login page URL redirects to another page, then enter that URL here
- 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
- UserName stringTemplate 
- Username template. Default: ${source.login}
- UserName stringTemplate Push Status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- UserName stringTemplate Suffix 
- Username template suffix
- UserName stringTemplate Type 
- Username template type. Default: BUILT_IN
- UsernameField string
- Login username field
- Label string
- The Application's display name.
- AccessibilityError stringRedirect Url 
- Custom error page URL
- AccessibilityLogin stringRedirect Url 
- Custom login page URL
- AccessibilitySelf boolService 
- Enable self service. Default is false
- AdminNote string
- Application notes for admins.
- AppLinks stringJson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- AutoSubmit boolToolbar 
- Display auto submit toolbar
- string
- Login button field
- Checkbox string
- CSS selector for the checkbox
- 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.
- PasswordField string
- Login password field
- PreconfiguredApp string
- Preconfigured app name
- RedirectUrl string
- If going to the login page URL redirects to another page, then enter that URL here
- 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
- UserName stringTemplate 
- Username template. Default: ${source.login}
- UserName stringTemplate Push Status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- UserName stringTemplate Suffix 
- Username template suffix
- UserName stringTemplate Type 
- Username template type. Default: BUILT_IN
- UsernameField string
- Login username field
- label String
- The Application's display name.
- accessibilityError StringRedirect Url 
- Custom error page URL
- accessibilityLogin StringRedirect Url 
- Custom login page URL
- accessibilitySelf BooleanService 
- Enable self service. Default is false
- adminNote String
- Application notes for admins.
- appLinks StringJson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- autoSubmit BooleanToolbar 
- Display auto submit toolbar
- String
- Login button field
- checkbox String
- CSS selector for the checkbox
- 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.
- passwordField String
- Login password field
- preconfiguredApp String
- Preconfigured app name
- redirectUrl String
- If going to the login page URL redirects to another page, then enter that URL here
- 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
- userName StringTemplate 
- Username template. Default: ${source.login}
- userName StringTemplate Push Status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- userName StringTemplate Suffix 
- Username template suffix
- userName StringTemplate Type 
- Username template type. Default: BUILT_IN
- usernameField String
- Login username field
- label string
- The Application's display name.
- accessibilityError stringRedirect Url 
- Custom error page URL
- accessibilityLogin stringRedirect Url 
- Custom login page URL
- accessibilitySelf booleanService 
- Enable self service. Default is false
- adminNote string
- Application notes for admins.
- appLinks stringJson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- autoSubmit booleanToolbar 
- Display auto submit toolbar
- string
- Login button field
- checkbox string
- CSS selector for the checkbox
- 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.
- passwordField string
- Login password field
- preconfiguredApp string
- Preconfigured app name
- redirectUrl string
- If going to the login page URL redirects to another page, then enter that URL here
- 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
- userName stringTemplate 
- Username template. Default: ${source.login}
- userName stringTemplate Push Status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- userName stringTemplate Suffix 
- Username template suffix
- userName stringTemplate Type 
- Username template type. Default: BUILT_IN
- usernameField string
- Login username field
- label str
- The Application's display name.
- accessibility_error_ strredirect_ url 
- Custom error page URL
- accessibility_login_ strredirect_ url 
- Custom login page URL
- accessibility_self_ boolservice 
- Enable self service. Default is false
- admin_note str
- Application notes for admins.
- app_links_ strjson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- auto_submit_ booltoolbar 
- Display auto submit toolbar
- str
- Login button field
- checkbox str
- CSS selector for the checkbox
- 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.
- password_field str
- Login password field
- preconfigured_app str
- Preconfigured app name
- redirect_url str
- If going to the login page URL redirects to another page, then enter that URL here
- 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_ strtemplate 
- Username template. Default: ${source.login}
- user_name_ strtemplate_ push_ status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- user_name_ strtemplate_ suffix 
- Username template suffix
- user_name_ strtemplate_ type 
- Username template type. Default: BUILT_IN
- username_field str
- Login username field
- label String
- The Application's display name.
- accessibilityError StringRedirect Url 
- Custom error page URL
- accessibilityLogin StringRedirect Url 
- Custom login page URL
- accessibilitySelf BooleanService 
- Enable self service. Default is false
- adminNote String
- Application notes for admins.
- appLinks StringJson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- autoSubmit BooleanToolbar 
- Display auto submit toolbar
- String
- Login button field
- checkbox String
- CSS selector for the checkbox
- 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.
- passwordField String
- Login password field
- preconfiguredApp String
- Preconfigured app name
- redirectUrl String
- If going to the login page URL redirects to another page, then enter that URL here
- 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
- userName StringTemplate 
- Username template. Default: ${source.login}
- userName StringTemplate Push Status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- userName StringTemplate Suffix 
- Username template suffix
- userName StringTemplate Type 
- Username template type. Default: BUILT_IN
- usernameField String
- Login username field
Outputs
All input properties are implicitly available as output properties. Additionally, the Swa resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- LogoUrl string
- URL of the application's logo
- Name string
- Name of the app.
- SignOn stringMode 
- Sign on mode of application.
- Id string
- The provider-assigned unique ID for this managed resource.
- LogoUrl string
- URL of the application's logo
- Name string
- Name of the app.
- SignOn stringMode 
- Sign on mode of application.
- id String
- The provider-assigned unique ID for this managed resource.
- logoUrl String
- URL of the application's logo
- name String
- Name of the app.
- signOn StringMode 
- Sign on mode of application.
- id string
- The provider-assigned unique ID for this managed resource.
- logoUrl string
- URL of the application's logo
- name string
- Name of the app.
- signOn stringMode 
- Sign on mode of application.
- id str
- The provider-assigned unique ID for this managed resource.
- logo_url str
- URL of the application's logo
- name str
- Name of the app.
- sign_on_ strmode 
- Sign on mode of application.
- id String
- The provider-assigned unique ID for this managed resource.
- logoUrl String
- URL of the application's logo
- name String
- Name of the app.
- signOn StringMode 
- Sign on mode of application.
Look up Existing Swa Resource
Get an existing Swa 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?: SwaState, opts?: CustomResourceOptions): Swa@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_field: Optional[str] = None,
        checkbox: 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,
        password_field: Optional[str] = None,
        preconfigured_app: Optional[str] = None,
        redirect_url: Optional[str] = None,
        sign_on_mode: Optional[str] = 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_field: Optional[str] = None) -> Swafunc GetSwa(ctx *Context, name string, id IDInput, state *SwaState, opts ...ResourceOption) (*Swa, error)public static Swa Get(string name, Input<string> id, SwaState? state, CustomResourceOptions? opts = null)public static Swa get(String name, Output<String> id, SwaState state, CustomResourceOptions options)resources:  _:    type: okta:app:Swa    get:      id: ${id}- 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.
- AccessibilityError stringRedirect Url 
- Custom error page URL
- AccessibilityLogin stringRedirect Url 
- Custom login page URL
- AccessibilitySelf boolService 
- Enable self service. Default is false
- AdminNote string
- Application notes for admins.
- AppLinks stringJson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- AutoSubmit boolToolbar 
- Display auto submit toolbar
- string
- Login button field
- Checkbox string
- CSS selector for the checkbox
- 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
- URL of the application's logo
- Name string
- Name of the app.
- PasswordField string
- Login password field
- PreconfiguredApp string
- Preconfigured app name
- RedirectUrl string
- If going to the login page URL redirects to another page, then enter that URL here
- SignOn stringMode 
- Sign on mode of application.
- 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
- UserName stringTemplate 
- Username template. Default: ${source.login}
- UserName stringTemplate Push Status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- UserName stringTemplate Suffix 
- Username template suffix
- UserName stringTemplate Type 
- Username template type. Default: BUILT_IN
- UsernameField string
- Login username field
- AccessibilityError stringRedirect Url 
- Custom error page URL
- AccessibilityLogin stringRedirect Url 
- Custom login page URL
- AccessibilitySelf boolService 
- Enable self service. Default is false
- AdminNote string
- Application notes for admins.
- AppLinks stringJson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- AutoSubmit boolToolbar 
- Display auto submit toolbar
- string
- Login button field
- Checkbox string
- CSS selector for the checkbox
- 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
- URL of the application's logo
- Name string
- Name of the app.
- PasswordField string
- Login password field
- PreconfiguredApp string
- Preconfigured app name
- RedirectUrl string
- If going to the login page URL redirects to another page, then enter that URL here
- SignOn stringMode 
- Sign on mode of application.
- 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
- UserName stringTemplate 
- Username template. Default: ${source.login}
- UserName stringTemplate Push Status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- UserName stringTemplate Suffix 
- Username template suffix
- UserName stringTemplate Type 
- Username template type. Default: BUILT_IN
- UsernameField string
- Login username field
- accessibilityError StringRedirect Url 
- Custom error page URL
- accessibilityLogin StringRedirect Url 
- Custom login page URL
- accessibilitySelf BooleanService 
- Enable self service. Default is false
- adminNote String
- Application notes for admins.
- appLinks StringJson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- autoSubmit BooleanToolbar 
- Display auto submit toolbar
- String
- Login button field
- checkbox String
- CSS selector for the checkbox
- 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
- URL of the application's logo
- name String
- Name of the app.
- passwordField String
- Login password field
- preconfiguredApp String
- Preconfigured app name
- redirectUrl String
- If going to the login page URL redirects to another page, then enter that URL here
- signOn StringMode 
- Sign on mode of application.
- 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
- userName StringTemplate 
- Username template. Default: ${source.login}
- userName StringTemplate Push Status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- userName StringTemplate Suffix 
- Username template suffix
- userName StringTemplate Type 
- Username template type. Default: BUILT_IN
- usernameField String
- Login username field
- accessibilityError stringRedirect Url 
- Custom error page URL
- accessibilityLogin stringRedirect Url 
- Custom login page URL
- accessibilitySelf booleanService 
- Enable self service. Default is false
- adminNote string
- Application notes for admins.
- appLinks stringJson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- autoSubmit booleanToolbar 
- Display auto submit toolbar
- string
- Login button field
- checkbox string
- CSS selector for the checkbox
- 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
- URL of the application's logo
- name string
- Name of the app.
- passwordField string
- Login password field
- preconfiguredApp string
- Preconfigured app name
- redirectUrl string
- If going to the login page URL redirects to another page, then enter that URL here
- signOn stringMode 
- Sign on mode of application.
- 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
- userName stringTemplate 
- Username template. Default: ${source.login}
- userName stringTemplate Push Status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- userName stringTemplate Suffix 
- Username template suffix
- userName stringTemplate Type 
- Username template type. Default: BUILT_IN
- usernameField string
- Login username field
- accessibility_error_ strredirect_ url 
- Custom error page URL
- accessibility_login_ strredirect_ url 
- Custom login page URL
- accessibility_self_ boolservice 
- Enable self service. Default is false
- admin_note str
- Application notes for admins.
- app_links_ strjson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- auto_submit_ booltoolbar 
- Display auto submit toolbar
- str
- Login button field
- checkbox str
- CSS selector for the checkbox
- 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
- URL of the application's logo
- name str
- Name of the app.
- password_field str
- Login password field
- preconfigured_app str
- Preconfigured app name
- redirect_url str
- If going to the login page URL redirects to another page, then enter that URL here
- sign_on_ strmode 
- Sign on mode of application.
- 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_ strtemplate 
- Username template. Default: ${source.login}
- user_name_ strtemplate_ push_ status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- user_name_ strtemplate_ suffix 
- Username template suffix
- user_name_ strtemplate_ type 
- Username template type. Default: BUILT_IN
- username_field str
- Login username field
- accessibilityError StringRedirect Url 
- Custom error page URL
- accessibilityLogin StringRedirect Url 
- Custom login page URL
- accessibilitySelf BooleanService 
- Enable self service. Default is false
- adminNote String
- Application notes for admins.
- appLinks StringJson 
- Displays specific appLinks for the app. The value for each application link should be boolean.
- autoSubmit BooleanToolbar 
- Display auto submit toolbar
- String
- Login button field
- checkbox String
- CSS selector for the checkbox
- 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
- URL of the application's logo
- name String
- Name of the app.
- passwordField String
- Login password field
- preconfiguredApp String
- Preconfigured app name
- redirectUrl String
- If going to the login page URL redirects to another page, then enter that URL here
- signOn StringMode 
- Sign on mode of application.
- 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
- userName StringTemplate 
- Username template. Default: ${source.login}
- userName StringTemplate Push Status 
- Push username on update. Valid values: PUSHandDONT_PUSH
- userName StringTemplate Suffix 
- Username template suffix
- userName StringTemplate Type 
- Username template type. Default: BUILT_IN
- usernameField String
- Login username field
Import
$ pulumi import okta:app/swa:Swa example <app_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Okta pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the oktaTerraform Provider.