okta.app.BasicAuth
Explore with Pulumi AI
This resource allows you to create and configure a Basic Auth Application.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Okta = Pulumi.Okta;
return await Deployment.RunAsync(() =>
{
var example = new Okta.App.BasicAuth("example", new()
{
AuthUrl = "https://example.com/auth.html",
Label = "Example",
Url = "https://example.com/login.html",
});
});
package main
import (
"github.com/pulumi/pulumi-okta/sdk/v3/go/okta/app"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := app.NewBasicAuth(ctx, "example", &app.BasicAuthArgs{
AuthUrl: pulumi.String("https://example.com/auth.html"),
Label: pulumi.String("Example"),
Url: 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.BasicAuth;
import com.pulumi.okta.app.BasicAuthArgs;
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 BasicAuth("example", BasicAuthArgs.builder()
.authUrl("https://example.com/auth.html")
.label("Example")
.url("https://example.com/login.html")
.build());
}
}
import pulumi
import pulumi_okta as okta
example = okta.app.BasicAuth("example",
auth_url="https://example.com/auth.html",
label="Example",
url="https://example.com/login.html")
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";
const example = new okta.app.BasicAuth("example", {
authUrl: "https://example.com/auth.html",
label: "Example",
url: "https://example.com/login.html",
});
resources:
example:
type: okta:app:BasicAuth
properties:
authUrl: https://example.com/auth.html
label: Example
url: https://example.com/login.html
Create BasicAuth Resource
new BasicAuth(name: string, args: BasicAuthArgs, opts?: CustomResourceOptions);
@overload
def BasicAuth(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,
auth_url: Optional[str] = None,
auto_submit_toolbar: Optional[bool] = None,
enduser_note: Optional[str] = None,
groups: Optional[Sequence[str]] = None,
hide_ios: Optional[bool] = None,
hide_web: Optional[bool] = None,
label: Optional[str] = None,
logo: Optional[str] = None,
skip_groups: Optional[bool] = None,
skip_users: Optional[bool] = None,
status: Optional[str] = None,
url: Optional[str] = None,
users: Optional[Sequence[BasicAuthUserArgs]] = None)
@overload
def BasicAuth(resource_name: str,
args: BasicAuthArgs,
opts: Optional[ResourceOptions] = None)
func NewBasicAuth(ctx *Context, name string, args BasicAuthArgs, opts ...ResourceOption) (*BasicAuth, error)
public BasicAuth(string name, BasicAuthArgs args, CustomResourceOptions? opts = null)
public BasicAuth(String name, BasicAuthArgs args)
public BasicAuth(String name, BasicAuthArgs args, CustomResourceOptions options)
type: okta:app:BasicAuth
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BasicAuthArgs
- 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 BasicAuthArgs
- 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 BasicAuthArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BasicAuthArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BasicAuthArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
BasicAuth 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 BasicAuth resource accepts the following input properties:
- Auth
Url string The URL of the authenticating site for this app.
- Label string
The Application's display name.
- Url string
The URL of the sign-in page for this app.
- Accessibility
Error stringRedirect Url Custom error page URL.
- Accessibility
Login stringRedirect Url Custom login page for this application.
- Accessibility
Self boolService Enable self-service. By default, it is
false
.- Admin
Note string Application notes for admins.
- App
Links stringJson Displays specific appLinks for the app. The value for each application link should be boolean.
- Auto
Submit boolToolbar Display auto submit toolbar.
- Enduser
Note string Application notes for end users.
- Groups List<string>
Groups associated with the application.
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 string
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- Skip
Groups bool Indicator that allows the app to skip
groups
sync (it's also can be provided during import). Default isfalse
.- Skip
Users bool Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- Status string
Status of application. (
"ACTIVE"
or"INACTIVE"
).- Users
List<Basic
Auth User Args> Users associated with the application.
The direct configuration of users in this app resource is deprecated, please ensure you use the resource
okta_app_user
for this functionality.
- Auth
Url string The URL of the authenticating site for this app.
- Label string
The Application's display name.
- Url string
The URL of the sign-in page for this app.
- Accessibility
Error stringRedirect Url Custom error page URL.
- Accessibility
Login stringRedirect Url Custom login page for this application.
- Accessibility
Self boolService Enable self-service. By default, it is
false
.- Admin
Note string Application notes for admins.
- App
Links stringJson Displays specific appLinks for the app. The value for each application link should be boolean.
- Auto
Submit boolToolbar Display auto submit toolbar.
- Enduser
Note string Application notes for end users.
- Groups []string
Groups associated with the application.
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 string
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- Skip
Groups bool Indicator that allows the app to skip
groups
sync (it's also can be provided during import). Default isfalse
.- Skip
Users bool Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- Status string
Status of application. (
"ACTIVE"
or"INACTIVE"
).- Users
[]Basic
Auth User Args Users associated with the application.
The direct configuration of users in this app resource is deprecated, please ensure you use the resource
okta_app_user
for this functionality.
- auth
Url String The URL of the authenticating site for this app.
- label String
The Application's display name.
- url String
The URL of the sign-in page for this app.
- accessibility
Error StringRedirect Url Custom error page URL.
- accessibility
Login StringRedirect Url Custom login page for this application.
- accessibility
Self BooleanService Enable self-service. By default, it is
false
.- admin
Note String Application notes for admins.
- app
Links StringJson Displays specific appLinks for the app. The value for each application link should be boolean.
- auto
Submit BooleanToolbar Display auto submit toolbar.
- enduser
Note String Application notes for end users.
- groups List<String>
Groups associated with the application.
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 Boolean Do not display application icon on mobile app.
- hide
Web Boolean Do not display application icon to users.
- logo String
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- skip
Groups Boolean Indicator that allows the app to skip
groups
sync (it's also can be provided during import). Default isfalse
.- skip
Users Boolean Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- status String
Status of application. (
"ACTIVE"
or"INACTIVE"
).- users
List<Basic
Auth User Args> Users associated with the application.
The direct configuration of users in this app resource is deprecated, please ensure you use the resource
okta_app_user
for this functionality.
- auth
Url string The URL of the authenticating site for this app.
- label string
The Application's display name.
- url string
The URL of the sign-in page for this app.
- accessibility
Error stringRedirect Url Custom error page URL.
- accessibility
Login stringRedirect Url Custom login page for this application.
- accessibility
Self booleanService Enable self-service. By default, it is
false
.- admin
Note string Application notes for admins.
- app
Links stringJson Displays specific appLinks for the app. The value for each application link should be boolean.
- auto
Submit booleanToolbar Display auto submit toolbar.
- enduser
Note string Application notes for end users.
- groups string[]
Groups associated with the application.
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 boolean Do not display application icon on mobile app.
- hide
Web boolean Do not display application icon to users.
- logo string
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- skip
Groups boolean Indicator that allows the app to skip
groups
sync (it's also can be provided during import). Default isfalse
.- skip
Users boolean Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- status string
Status of application. (
"ACTIVE"
or"INACTIVE"
).- users
Basic
Auth User Args[] Users associated with the application.
The direct configuration of users in this app resource is deprecated, please ensure you use the resource
okta_app_user
for this functionality.
- auth_
url str The URL of the authenticating site for this app.
- label str
The Application's display name.
- url str
The URL of the sign-in page for this app.
- accessibility_
error_ strredirect_ url Custom error page URL.
- accessibility_
login_ strredirect_ url Custom login page for this application.
- accessibility_
self_ boolservice Enable self-service. By default, it 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.
- enduser_
note str Application notes for end users.
- groups Sequence[str]
Groups associated with the application.
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 path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- skip_
groups bool Indicator that allows the app to skip
groups
sync (it's also can be provided during import). Default isfalse
.- skip_
users bool Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- status str
Status of application. (
"ACTIVE"
or"INACTIVE"
).- users
Sequence[Basic
Auth User Args] Users associated with the application.
The direct configuration of users in this app resource is deprecated, please ensure you use the resource
okta_app_user
for this functionality.
- auth
Url String The URL of the authenticating site for this app.
- label String
The Application's display name.
- url String
The URL of the sign-in page for this app.
- accessibility
Error StringRedirect Url Custom error page URL.
- accessibility
Login StringRedirect Url Custom login page for this application.
- accessibility
Self BooleanService Enable self-service. By default, it is
false
.- admin
Note String Application notes for admins.
- app
Links StringJson Displays specific appLinks for the app. The value for each application link should be boolean.
- auto
Submit BooleanToolbar Display auto submit toolbar.
- enduser
Note String Application notes for end users.
- groups List<String>
Groups associated with the application.
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 Boolean Do not display application icon on mobile app.
- hide
Web Boolean Do not display application icon to users.
- logo String
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- skip
Groups Boolean Indicator that allows the app to skip
groups
sync (it's also can be provided during import). Default isfalse
.- skip
Users Boolean Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- status String
Status of application. (
"ACTIVE"
or"INACTIVE"
).- users List<Property Map>
Users associated with the application.
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 BasicAuth resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Logo
Url string Direct link of application logo.
- Name string
Name of the app.
- Sign
On stringMode Sign on mode of application.
- Id string
The provider-assigned unique ID for this managed resource.
- Logo
Url string Direct link of application logo.
- Name string
Name of the app.
- Sign
On stringMode Sign on mode of application.
- id String
The provider-assigned unique ID for this managed resource.
- logo
Url String Direct link of application logo.
- name String
Name of the app.
- sign
On StringMode Sign on mode of application.
- id string
The provider-assigned unique ID for this managed resource.
- logo
Url string Direct link of application logo.
- name string
Name of the app.
- sign
On stringMode Sign on mode of application.
- id str
The provider-assigned unique ID for this managed resource.
- logo_
url str Direct link of application logo.
- name str
Name of the app.
- sign_
on_ strmode Sign on mode of application.
- id String
The provider-assigned unique ID for this managed resource.
- logo
Url String Direct link of application logo.
- name String
Name of the app.
- sign
On StringMode Sign on mode of application.
Look up Existing BasicAuth Resource
Get an existing BasicAuth 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?: BasicAuthState, opts?: CustomResourceOptions): BasicAuth
@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,
auth_url: Optional[str] = None,
auto_submit_toolbar: Optional[bool] = None,
enduser_note: Optional[str] = None,
groups: Optional[Sequence[str]] = None,
hide_ios: Optional[bool] = None,
hide_web: Optional[bool] = None,
label: Optional[str] = None,
logo: Optional[str] = None,
logo_url: Optional[str] = None,
name: Optional[str] = None,
sign_on_mode: Optional[str] = None,
skip_groups: Optional[bool] = None,
skip_users: Optional[bool] = None,
status: Optional[str] = None,
url: Optional[str] = None,
users: Optional[Sequence[BasicAuthUserArgs]] = None) -> BasicAuth
func GetBasicAuth(ctx *Context, name string, id IDInput, state *BasicAuthState, opts ...ResourceOption) (*BasicAuth, error)
public static BasicAuth Get(string name, Input<string> id, BasicAuthState? state, CustomResourceOptions? opts = null)
public static BasicAuth get(String name, Output<String> id, BasicAuthState 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.
- Accessibility
Error stringRedirect Url Custom error page URL.
- Accessibility
Login stringRedirect Url Custom login page for this application.
- Accessibility
Self boolService Enable self-service. By default, it is
false
.- Admin
Note string Application notes for admins.
- App
Links stringJson Displays specific appLinks for the app. The value for each application link should be boolean.
- Auth
Url string The URL of the authenticating site for this app.
- Auto
Submit boolToolbar Display auto submit toolbar.
- Enduser
Note string Application notes for end users.
- Groups List<string>
Groups associated with the application.
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 string
The Application's display name.
- Logo string
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- Logo
Url string Direct link of application logo.
- Name string
Name of the app.
- Sign
On stringMode 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 isfalse
.- Skip
Users bool Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- Status string
Status of application. (
"ACTIVE"
or"INACTIVE"
).- Url string
The URL of the sign-in page for this app.
- Users
List<Basic
Auth User Args> Users associated with the application.
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 stringRedirect Url Custom error page URL.
- Accessibility
Login stringRedirect Url Custom login page for this application.
- Accessibility
Self boolService Enable self-service. By default, it is
false
.- Admin
Note string Application notes for admins.
- App
Links stringJson Displays specific appLinks for the app. The value for each application link should be boolean.
- Auth
Url string The URL of the authenticating site for this app.
- Auto
Submit boolToolbar Display auto submit toolbar.
- Enduser
Note string Application notes for end users.
- Groups []string
Groups associated with the application.
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 string
The Application's display name.
- Logo string
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- Logo
Url string Direct link of application logo.
- Name string
Name of the app.
- Sign
On stringMode 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 isfalse
.- Skip
Users bool Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- Status string
Status of application. (
"ACTIVE"
or"INACTIVE"
).- Url string
The URL of the sign-in page for this app.
- Users
[]Basic
Auth User Args Users associated with the application.
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 StringRedirect Url Custom error page URL.
- accessibility
Login StringRedirect Url Custom login page for this application.
- accessibility
Self BooleanService Enable self-service. By default, it is
false
.- admin
Note String Application notes for admins.
- app
Links StringJson Displays specific appLinks for the app. The value for each application link should be boolean.
- auth
Url String The URL of the authenticating site for this app.
- auto
Submit BooleanToolbar Display auto submit toolbar.
- enduser
Note String Application notes for end users.
- groups List<String>
Groups associated with the application.
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 Boolean Do not display application icon on mobile app.
- hide
Web Boolean Do not display application icon to users.
- label String
The Application's display name.
- logo String
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- logo
Url String Direct link of application logo.
- name String
Name of the app.
- sign
On StringMode Sign on mode of application.
- skip
Groups Boolean Indicator that allows the app to skip
groups
sync (it's also can be provided during import). Default isfalse
.- skip
Users Boolean Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- status String
Status of application. (
"ACTIVE"
or"INACTIVE"
).- url String
The URL of the sign-in page for this app.
- users
List<Basic
Auth User Args> Users associated with the application.
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 stringRedirect Url Custom error page URL.
- accessibility
Login stringRedirect Url Custom login page for this application.
- accessibility
Self booleanService Enable self-service. By default, it is
false
.- admin
Note string Application notes for admins.
- app
Links stringJson Displays specific appLinks for the app. The value for each application link should be boolean.
- auth
Url string The URL of the authenticating site for this app.
- auto
Submit booleanToolbar Display auto submit toolbar.
- enduser
Note string Application notes for end users.
- groups string[]
Groups associated with the application.
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 boolean Do not display application icon on mobile app.
- hide
Web boolean Do not display application icon to users.
- label string
The Application's display name.
- logo string
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- logo
Url string Direct link of application logo.
- name string
Name of the app.
- sign
On stringMode Sign on mode of application.
- skip
Groups boolean Indicator that allows the app to skip
groups
sync (it's also can be provided during import). Default isfalse
.- skip
Users boolean Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- status string
Status of application. (
"ACTIVE"
or"INACTIVE"
).- url string
The URL of the sign-in page for this app.
- users
Basic
Auth User Args[] Users associated with the application.
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_ strredirect_ url Custom error page URL.
- accessibility_
login_ strredirect_ url Custom login page for this application.
- accessibility_
self_ boolservice Enable self-service. By default, it 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.
- auth_
url str The URL of the authenticating site for this app.
- auto_
submit_ booltoolbar Display auto submit toolbar.
- enduser_
note str Application notes for end users.
- groups Sequence[str]
Groups associated with the application.
The direct configuration of groups in this app resource is deprecated, please ensure you use the resource
okta_app_group_assignments
for this functionality.- hide_
ios bool Do not display application icon on mobile app.
- hide_
web bool Do not display application icon to users.
- label str
The Application's display name.
- logo str
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- logo_
url str Direct link of application logo.
- name str
Name of the app.
- sign_
on_ strmode 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 isfalse
.- skip_
users bool Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- status str
Status of application. (
"ACTIVE"
or"INACTIVE"
).- url str
The URL of the sign-in page for this app.
- users
Sequence[Basic
Auth User Args] Users associated with the application.
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 StringRedirect Url Custom error page URL.
- accessibility
Login StringRedirect Url Custom login page for this application.
- accessibility
Self BooleanService Enable self-service. By default, it is
false
.- admin
Note String Application notes for admins.
- app
Links StringJson Displays specific appLinks for the app. The value for each application link should be boolean.
- auth
Url String The URL of the authenticating site for this app.
- auto
Submit BooleanToolbar Display auto submit toolbar.
- enduser
Note String Application notes for end users.
- groups List<String>
Groups associated with the application.
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 Boolean Do not display application icon on mobile app.
- hide
Web Boolean Do not display application icon to users.
- label String
The Application's display name.
- logo String
Local path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- logo
Url String Direct link of application logo.
- name String
Name of the app.
- sign
On StringMode Sign on mode of application.
- skip
Groups Boolean Indicator that allows the app to skip
groups
sync (it's also can be provided during import). Default isfalse
.- skip
Users Boolean Indicator that allows the app to skip
users
sync (it's also can be provided during import). Default isfalse
.- status String
Status of application. (
"ACTIVE"
or"INACTIVE"
).- url String
The URL of the sign-in page for this app.
- users List<Property Map>
Users associated with the application.
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
BasicAuthUser
Import
A Basic Auth App can be imported via the Okta ID.
$ pulumi import okta:app/basicAuth:BasicAuth example <app id>
It’s also possible to import app without groups or/and users. In this case ID may look like this
$ pulumi import okta:app/basicAuth:BasicAuth example <app id>/skip_users
$ pulumi import okta:app/basicAuth:BasicAuth example <app id>/skip_users/skip_groups
$ pulumi import okta:app/basicAuth:BasicAuth example <app id>/skip_groups
Package Details
- Repository
- Okta pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
okta
Terraform Provider.