SecurePasswordStore

Creates a Secure Password Store Application.

This resource allows you to create and configure a Secure Password Store Application.

Example Usage

using Pulumi;
using Okta = Pulumi.Okta;

class MyStack : Stack
{
    public MyStack()
    {
        var example = new Okta.App.SecurePasswordStore("example", new Okta.App.SecurePasswordStoreArgs
        {
            CredentialsScheme = "ADMIN_SETS_CREDENTIALS",
            Label = "example",
            PasswordField = "pass",
            Url = "http://test.com",
            UsernameField = "user",
        });
    }

}

Coming soon!

import pulumi
import pulumi_okta as okta

example = okta.app.SecurePasswordStore("example",
    credentials_scheme="ADMIN_SETS_CREDENTIALS",
    label="example",
    password_field="pass",
    url="http://test.com",
    username_field="user")
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = new okta.app.SecurePasswordStore("example", {
    credentialsScheme: "ADMIN_SETS_CREDENTIALS",
    label: "example",
    passwordField: "pass",
    url: "http://test.com",
    usernameField: "user",
});

Create a SecurePasswordStore Resource

def SecurePasswordStore(resource_name, opts=None, accessibility_error_redirect_url=None, accessibility_self_service=None, auto_submit_toolbar=None, credentials_scheme=None, groups=None, hide_ios=None, hide_web=None, label=None, optional_field1=None, optional_field1_value=None, optional_field2=None, optional_field2_value=None, optional_field3=None, optional_field3_value=None, password_field=None, reveal_password=None, shared_password=None, shared_username=None, status=None, url=None, username_field=None, users=None, __props__=None);
name string
The unique name of the resource.
args SecurePasswordStoreArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args SecurePasswordStoreArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args SecurePasswordStoreArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

SecurePasswordStore Resource Properties

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

Inputs

The SecurePasswordStore resource accepts the following input properties:

Label string

The display name of the Application.

PasswordField string

Login password field.

Url string

Login URL.

UsernameField string

Login username field.

AccessibilityErrorRedirectUrl string

Custom error page URL.

AccessibilitySelfService bool

Enable self service. By default it is false.

AutoSubmitToolbar bool

Display auto submit toolbar.

CredentialsScheme string

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

Groups List<string>

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

HideIos bool

Do not display application icon on mobile app.

HideWeb bool

Do not display application icon to users.

OptionalField1 string

Name of optional param in the login form.

OptionalField1Value string

Name of optional value in the login form.

OptionalField2 string

Name of optional param in the login form.

OptionalField2Value string

Name of optional value in the login form.

OptionalField3 string

Name of optional param in the login form.

OptionalField3Value string

Name of optional value in the login form.

RevealPassword bool

Allow user to reveal password.

SharedPassword string

Shared password, required for certain schemes.

SharedUsername string

Shared username, required for certain schemes.

Status string

Status of application. By default it is "ACTIVE".

Users List<SecurePasswordStoreUserArgs>

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

Label string

The display name of the Application.

PasswordField string

Login password field.

Url string

Login URL.

UsernameField string

Login username field.

AccessibilityErrorRedirectUrl string

Custom error page URL.

AccessibilitySelfService bool

Enable self service. By default it is false.

AutoSubmitToolbar bool

Display auto submit toolbar.

CredentialsScheme string

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

Groups []string

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

HideIos bool

Do not display application icon on mobile app.

HideWeb bool

Do not display application icon to users.

OptionalField1 string

Name of optional param in the login form.

OptionalField1Value string

Name of optional value in the login form.

OptionalField2 string

Name of optional param in the login form.

OptionalField2Value string

Name of optional value in the login form.

OptionalField3 string

Name of optional param in the login form.

OptionalField3Value string

Name of optional value in the login form.

RevealPassword bool

Allow user to reveal password.

SharedPassword string

Shared password, required for certain schemes.

SharedUsername string

Shared username, required for certain schemes.

Status string

Status of application. By default it is "ACTIVE".

Users []SecurePasswordStoreUser

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

label string

The display name of the Application.

passwordField string

Login password field.

url string

Login URL.

usernameField string

Login username field.

accessibilityErrorRedirectUrl string

Custom error page URL.

accessibilitySelfService boolean

Enable self service. By default it is false.

autoSubmitToolbar boolean

Display auto submit toolbar.

credentialsScheme string

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

groups string[]

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

hideIos boolean

Do not display application icon on mobile app.

hideWeb boolean

Do not display application icon to users.

optionalField1 string

Name of optional param in the login form.

optionalField1Value string

Name of optional value in the login form.

optionalField2 string

Name of optional param in the login form.

optionalField2Value string

Name of optional value in the login form.

optionalField3 string

Name of optional param in the login form.

optionalField3Value string

Name of optional value in the login form.

revealPassword boolean

Allow user to reveal password.

sharedPassword string

Shared password, required for certain schemes.

sharedUsername string

Shared username, required for certain schemes.

status string

Status of application. By default it is "ACTIVE".

users SecurePasswordStoreUser[]

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

label str

The display name of the Application.

password_field str

Login password field.

url str

Login URL.

username_field str

Login username field.

accessibility_error_redirect_url str

Custom error page URL.

accessibility_self_service bool

Enable self service. By default it is false.

auto_submit_toolbar bool

Display auto submit toolbar.

credentials_scheme str

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

groups List[str]

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

hide_ios bool

Do not display application icon on mobile app.

hide_web bool

Do not display application icon to users.

optional_field1 str

Name of optional param in the login form.

optional_field1_value str

Name of optional value in the login form.

optional_field2 str

Name of optional param in the login form.

optional_field2_value str

Name of optional value in the login form.

optional_field3 str

Name of optional param in the login form.

optional_field3_value str

Name of optional value in the login form.

reveal_password bool

Allow user to reveal password.

shared_password str

Shared password, required for certain schemes.

shared_username str

Shared username, required for certain schemes.

status str

Status of application. By default it is "ACTIVE".

users List[SecurePasswordStoreUser]

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

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string

Name assigned to the application by Okta.

SignOnMode string

Sign on mode of application.

UserNameTemplate string

The default username assigned to each user.

UserNameTemplateType string

The Username template type.

Id string
The provider-assigned unique ID for this managed resource.
Name string

Name assigned to the application by Okta.

SignOnMode string

Sign on mode of application.

UserNameTemplate string

The default username assigned to each user.

UserNameTemplateType string

The Username template type.

id string
The provider-assigned unique ID for this managed resource.
name string

Name assigned to the application by Okta.

signOnMode string

Sign on mode of application.

userNameTemplate string

The default username assigned to each user.

userNameTemplateType string

The Username template type.

id str
The provider-assigned unique ID for this managed resource.
name str

Name assigned to the application by Okta.

sign_on_mode str

Sign on mode of application.

user_name_template str

The default username assigned to each user.

user_name_template_type str

The Username template type.

Look up an Existing SecurePasswordStore Resource

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

static get(resource_name, id, opts=None, accessibility_error_redirect_url=None, accessibility_self_service=None, auto_submit_toolbar=None, credentials_scheme=None, groups=None, hide_ios=None, hide_web=None, label=None, name=None, optional_field1=None, optional_field1_value=None, optional_field2=None, optional_field2_value=None, optional_field3=None, optional_field3_value=None, password_field=None, reveal_password=None, shared_password=None, shared_username=None, sign_on_mode=None, status=None, url=None, user_name_template=None, user_name_template_type=None, username_field=None, users=None, __props__=None);
func GetSecurePasswordStore(ctx *Context, name string, id IDInput, state *SecurePasswordStoreState, opts ...ResourceOption) (*SecurePasswordStore, error)
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.

The following state arguments are supported:

AccessibilityErrorRedirectUrl string

Custom error page URL.

AccessibilitySelfService bool

Enable self service. By default it is false.

AutoSubmitToolbar bool

Display auto submit toolbar.

CredentialsScheme string

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

Groups List<string>

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

HideIos bool

Do not display application icon on mobile app.

HideWeb bool

Do not display application icon to users.

Label string

The display name of the Application.

Name string

Name assigned to the application by Okta.

OptionalField1 string

Name of optional param in the login form.

OptionalField1Value string

Name of optional value in the login form.

OptionalField2 string

Name of optional param in the login form.

OptionalField2Value string

Name of optional value in the login form.

OptionalField3 string

Name of optional param in the login form.

OptionalField3Value string

Name of optional value in the login form.

PasswordField string

Login password field.

RevealPassword bool

Allow user to reveal password.

SharedPassword string

Shared password, required for certain schemes.

SharedUsername string

Shared username, required for certain schemes.

SignOnMode string

Sign on mode of application.

Status string

Status of application. By default it is "ACTIVE".

Url string

Login URL.

UserNameTemplate string

The default username assigned to each user.

UserNameTemplateType string

The Username template type.

UsernameField string

Login username field.

Users List<SecurePasswordStoreUserArgs>

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

AccessibilityErrorRedirectUrl string

Custom error page URL.

AccessibilitySelfService bool

Enable self service. By default it is false.

AutoSubmitToolbar bool

Display auto submit toolbar.

CredentialsScheme string

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

Groups []string

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

HideIos bool

Do not display application icon on mobile app.

HideWeb bool

Do not display application icon to users.

Label string

The display name of the Application.

Name string

Name assigned to the application by Okta.

OptionalField1 string

Name of optional param in the login form.

OptionalField1Value string

Name of optional value in the login form.

OptionalField2 string

Name of optional param in the login form.

OptionalField2Value string

Name of optional value in the login form.

OptionalField3 string

Name of optional param in the login form.

OptionalField3Value string

Name of optional value in the login form.

PasswordField string

Login password field.

RevealPassword bool

Allow user to reveal password.

SharedPassword string

Shared password, required for certain schemes.

SharedUsername string

Shared username, required for certain schemes.

SignOnMode string

Sign on mode of application.

Status string

Status of application. By default it is "ACTIVE".

Url string

Login URL.

UserNameTemplate string

The default username assigned to each user.

UserNameTemplateType string

The Username template type.

UsernameField string

Login username field.

Users []SecurePasswordStoreUser

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

accessibilityErrorRedirectUrl string

Custom error page URL.

accessibilitySelfService boolean

Enable self service. By default it is false.

autoSubmitToolbar boolean

Display auto submit toolbar.

credentialsScheme string

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

groups string[]

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

hideIos boolean

Do not display application icon on mobile app.

hideWeb boolean

Do not display application icon to users.

label string

The display name of the Application.

name string

Name assigned to the application by Okta.

optionalField1 string

Name of optional param in the login form.

optionalField1Value string

Name of optional value in the login form.

optionalField2 string

Name of optional param in the login form.

optionalField2Value string

Name of optional value in the login form.

optionalField3 string

Name of optional param in the login form.

optionalField3Value string

Name of optional value in the login form.

passwordField string

Login password field.

revealPassword boolean

Allow user to reveal password.

sharedPassword string

Shared password, required for certain schemes.

sharedUsername string

Shared username, required for certain schemes.

signOnMode string

Sign on mode of application.

status string

Status of application. By default it is "ACTIVE".

url string

Login URL.

userNameTemplate string

The default username assigned to each user.

userNameTemplateType string

The Username template type.

usernameField string

Login username field.

users SecurePasswordStoreUser[]

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

accessibility_error_redirect_url str

Custom error page URL.

accessibility_self_service bool

Enable self service. By default it is false.

auto_submit_toolbar bool

Display auto submit toolbar.

credentials_scheme str

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

groups List[str]

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

hide_ios bool

Do not display application icon on mobile app.

hide_web bool

Do not display application icon to users.

label str

The display name of the Application.

name str

Name assigned to the application by Okta.

optional_field1 str

Name of optional param in the login form.

optional_field1_value str

Name of optional value in the login form.

optional_field2 str

Name of optional param in the login form.

optional_field2_value str

Name of optional value in the login form.

optional_field3 str

Name of optional param in the login form.

optional_field3_value str

Name of optional value in the login form.

password_field str

Login password field.

reveal_password bool

Allow user to reveal password.

shared_password str

Shared password, required for certain schemes.

shared_username str

Shared username, required for certain schemes.

sign_on_mode str

Sign on mode of application.

status str

Status of application. By default it is "ACTIVE".

url str

Login URL.

user_name_template str

The default username assigned to each user.

user_name_template_type str

The Username template type.

username_field str

Login username field.

users List[SecurePasswordStoreUser]

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

Supporting Types

SecurePasswordStoreUser

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

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

Package Details

Repository
https://github.com/pulumi/pulumi-okta
License
Apache-2.0
Notes
This Pulumi package is based on the okta Terraform Provider.