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
new SecurePasswordStore(name: string, args: SecurePasswordStoreArgs, opts?: CustomResourceOptions);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);func NewSecurePasswordStore(ctx *Context, name string, args SecurePasswordStoreArgs, opts ...ResourceOption) (*SecurePasswordStore, error)public SecurePasswordStore(string name, SecurePasswordStoreArgs args, CustomResourceOptions? opts = null)- 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.
- Password
Field string Login password field.
- Url string
Login URL.
- Username
Field string Login username field.
- Accessibility
Error stringRedirect Url Custom error page URL.
- Accessibility
Self boolService Enable self service. By default it is
false.- Auto
Submit boolToolbar Display auto submit toolbar.
- Credentials
Scheme 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.GroupAssignmentfor 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 string Name of optional param in the login form.
- Optional
Field1Value string Name of optional value in the login form.
- Optional
Field2 string Name of optional param in the login form.
- Optional
Field2Value string Name of optional value in the login form.
- Optional
Field3 string Name of optional param in the login form.
- Optional
Field3Value string Name of optional value in the login form.
- Reveal
Password bool Allow user to reveal password.
- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- Status string
Status of application. By default it is
"ACTIVE".- Users
List<Secure
Password Store User Args> The users assigned to the application. See
okta.app.Userfor a more flexible approach.
- Label string
The display name of the Application.
- Password
Field string Login password field.
- Url string
Login URL.
- Username
Field string Login username field.
- Accessibility
Error stringRedirect Url Custom error page URL.
- Accessibility
Self boolService Enable self service. By default it is
false.- Auto
Submit boolToolbar Display auto submit toolbar.
- Credentials
Scheme 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.GroupAssignmentfor 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 string Name of optional param in the login form.
- Optional
Field1Value string Name of optional value in the login form.
- Optional
Field2 string Name of optional param in the login form.
- Optional
Field2Value string Name of optional value in the login form.
- Optional
Field3 string Name of optional param in the login form.
- Optional
Field3Value string Name of optional value in the login form.
- Reveal
Password bool Allow user to reveal password.
- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- Status string
Status of application. By default it is
"ACTIVE".- Users
[]Secure
Password Store User The users assigned to the application. See
okta.app.Userfor a more flexible approach.
- label string
The display name of the Application.
- password
Field string Login password field.
- url string
Login URL.
- username
Field string Login username field.
- accessibility
Error stringRedirect Url Custom error page URL.
- accessibility
Self booleanService Enable self service. By default it is
false.- auto
Submit booleanToolbar Display auto submit toolbar.
- credentials
Scheme 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.GroupAssignmentfor a more flexible approach.- hide
Ios boolean Do not display application icon on mobile app.
- hide
Web boolean Do not display application icon to users.
- optional
Field1 string Name of optional param in the login form.
- optional
Field1Value string Name of optional value in the login form.
- optional
Field2 string Name of optional param in the login form.
- optional
Field2Value string Name of optional value in the login form.
- optional
Field3 string Name of optional param in the login form.
- optional
Field3Value string Name of optional value in the login form.
- reveal
Password boolean Allow user to reveal password.
- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- status string
Status of application. By default it is
"ACTIVE".- users
Secure
Password Store User[] The users assigned to the application. See
okta.app.Userfor 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_ strredirect_ url Custom error page URL.
- accessibility_
self_ boolservice Enable self service. By default it is
false.- auto_
submit_ booltoolbar 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.GroupAssignmentfor 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_ strvalue Name of optional value in the login form.
- optional_
field2 str Name of optional param in the login form.
- optional_
field2_ strvalue Name of optional value in the login form.
- optional_
field3 str Name of optional param in the login form.
- optional_
field3_ strvalue Name of optional value in the login form.
- reveal_
password bool Allow user to reveal password.
- str
Shared password, required for certain schemes.
- str
Shared username, required for certain schemes.
- status str
Status of application. By default it is
"ACTIVE".- users
List[Secure
Password Store User] The users assigned to the application. See
okta.app.Userfor 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.
- Sign
On stringMode Sign on mode of application.
- User
Name stringTemplate The default username assigned to each user.
- User
Name stringTemplate Type The Username template type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
Name assigned to the application by Okta.
- Sign
On stringMode Sign on mode of application.
- User
Name stringTemplate The default username assigned to each user.
- User
Name stringTemplate Type The Username template type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
Name assigned to the application by Okta.
- sign
On stringMode Sign on mode of application.
- user
Name stringTemplate The default username assigned to each user.
- user
Name stringTemplate Type 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_ strmode Sign on mode of application.
- user_
name_ strtemplate The default username assigned to each user.
- user_
name_ strtemplate_ type 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.
public static get(name: string, id: Input<ID>, state?: SecurePasswordStoreState, opts?: CustomResourceOptions): SecurePasswordStorestatic 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)public static SecurePasswordStore Get(string name, Input<string> id, SecurePasswordStoreState? state, CustomResourceOptions? opts = null)- 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:
- Accessibility
Error stringRedirect Url Custom error page URL.
- Accessibility
Self boolService Enable self service. By default it is
false.- Auto
Submit boolToolbar Display auto submit toolbar.
- Credentials
Scheme 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.GroupAssignmentfor 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 string
The display name of the Application.
- Name string
Name assigned to the application by Okta.
- Optional
Field1 string Name of optional param in the login form.
- Optional
Field1Value string Name of optional value in the login form.
- Optional
Field2 string Name of optional param in the login form.
- Optional
Field2Value string Name of optional value in the login form.
- Optional
Field3 string Name of optional param in the login form.
- Optional
Field3Value string Name of optional value in the login form.
- Password
Field string Login password field.
- Reveal
Password bool Allow user to reveal password.
- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- Sign
On stringMode Sign on mode of application.
- Status string
Status of application. By default it is
"ACTIVE".- Url string
Login URL.
- User
Name stringTemplate The default username assigned to each user.
- User
Name stringTemplate Type The Username template type.
- Username
Field string Login username field.
- Users
List<Secure
Password Store User Args> The users assigned to the application. See
okta.app.Userfor a more flexible approach.
- Accessibility
Error stringRedirect Url Custom error page URL.
- Accessibility
Self boolService Enable self service. By default it is
false.- Auto
Submit boolToolbar Display auto submit toolbar.
- Credentials
Scheme 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.GroupAssignmentfor 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 string
The display name of the Application.
- Name string
Name assigned to the application by Okta.
- Optional
Field1 string Name of optional param in the login form.
- Optional
Field1Value string Name of optional value in the login form.
- Optional
Field2 string Name of optional param in the login form.
- Optional
Field2Value string Name of optional value in the login form.
- Optional
Field3 string Name of optional param in the login form.
- Optional
Field3Value string Name of optional value in the login form.
- Password
Field string Login password field.
- Reveal
Password bool Allow user to reveal password.
- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- Sign
On stringMode Sign on mode of application.
- Status string
Status of application. By default it is
"ACTIVE".- Url string
Login URL.
- User
Name stringTemplate The default username assigned to each user.
- User
Name stringTemplate Type The Username template type.
- Username
Field string Login username field.
- Users
[]Secure
Password Store User The users assigned to the application. See
okta.app.Userfor a more flexible approach.
- accessibility
Error stringRedirect Url Custom error page URL.
- accessibility
Self booleanService Enable self service. By default it is
false.- auto
Submit booleanToolbar Display auto submit toolbar.
- credentials
Scheme 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.GroupAssignmentfor a more flexible approach.- hide
Ios boolean Do not display application icon on mobile app.
- hide
Web 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.
- optional
Field1 string Name of optional param in the login form.
- optional
Field1Value string Name of optional value in the login form.
- optional
Field2 string Name of optional param in the login form.
- optional
Field2Value string Name of optional value in the login form.
- optional
Field3 string Name of optional param in the login form.
- optional
Field3Value string Name of optional value in the login form.
- password
Field string Login password field.
- reveal
Password boolean Allow user to reveal password.
- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- sign
On stringMode Sign on mode of application.
- status string
Status of application. By default it is
"ACTIVE".- url string
Login URL.
- user
Name stringTemplate The default username assigned to each user.
- user
Name stringTemplate Type The Username template type.
- username
Field string Login username field.
- users
Secure
Password Store User[] The users assigned to the application. See
okta.app.Userfor a more flexible approach.
- accessibility_
error_ strredirect_ url Custom error page URL.
- accessibility_
self_ boolservice Enable self service. By default it is
false.- auto_
submit_ booltoolbar 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.GroupAssignmentfor 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_ strvalue Name of optional value in the login form.
- optional_
field2 str Name of optional param in the login form.
- optional_
field2_ strvalue Name of optional value in the login form.
- optional_
field3 str Name of optional param in the login form.
- optional_
field3_ strvalue Name of optional value in the login form.
- password_
field str Login password field.
- reveal_
password bool Allow user to reveal password.
- str
Shared password, required for certain schemes.
- str
Shared username, required for certain schemes.
- sign_
on_ strmode Sign on mode of application.
- status str
Status of application. By default it is
"ACTIVE".- url str
Login URL.
- user_
name_ strtemplate The default username assigned to each user.
- user_
name_ strtemplate_ type The Username template type.
- username_
field str Login username field.
- users
List[Secure
Password Store User] The users assigned to the application. See
okta.app.Userfor a more flexible approach.
Supporting Types
SecurePasswordStoreUser
Package Details
- Repository
- https://github.com/pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oktaTerraform Provider.