okta.app.SecurePasswordStore
This resource allows you to create and configure a Secure Password Store Application.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Okta = Pulumi.Okta;
return await Deployment.RunAsync(() =>
{
var example = new Okta.App.SecurePasswordStore("example", new()
{
CredentialsScheme = "ADMIN_SETS_CREDENTIALS",
Label = "example",
PasswordField = "pass",
Url = "https://test.com",
UsernameField = "user",
});
});
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.NewSecurePasswordStore(ctx, "example", &app.SecurePasswordStoreArgs{
CredentialsScheme: pulumi.String("ADMIN_SETS_CREDENTIALS"),
Label: pulumi.String("example"),
PasswordField: pulumi.String("pass"),
Url: pulumi.String("https://test.com"),
UsernameField: pulumi.String("user"),
})
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.SecurePasswordStore;
import com.pulumi.okta.app.SecurePasswordStoreArgs;
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 SecurePasswordStore("example", SecurePasswordStoreArgs.builder()
.credentialsScheme("ADMIN_SETS_CREDENTIALS")
.label("example")
.passwordField("pass")
.url("https://test.com")
.usernameField("user")
.build());
}
}
import pulumi
import pulumi_okta as okta
example = okta.app.SecurePasswordStore("example",
credentials_scheme="ADMIN_SETS_CREDENTIALS",
label="example",
password_field="pass",
url="https://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: "https://test.com",
usernameField: "user",
});
resources:
example:
type: okta:app:SecurePasswordStore
properties:
credentialsScheme: ADMIN_SETS_CREDENTIALS
label: example
passwordField: pass
url: https://test.com
usernameField: user
Create SecurePasswordStore Resource
new SecurePasswordStore(name: string, args: SecurePasswordStoreArgs, opts?: CustomResourceOptions);
@overload
def SecurePasswordStore(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,
auto_submit_toolbar: Optional[bool] = None,
credentials_scheme: Optional[str] = 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,
optional_field1: Optional[str] = None,
optional_field1_value: Optional[str] = None,
optional_field2: Optional[str] = None,
optional_field2_value: Optional[str] = None,
optional_field3: Optional[str] = None,
optional_field3_value: Optional[str] = None,
password_field: Optional[str] = None,
reveal_password: Optional[bool] = None,
shared_password: Optional[str] = None,
shared_username: Optional[str] = None,
skip_groups: Optional[bool] = None,
skip_users: Optional[bool] = None,
status: Optional[str] = None,
url: 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,
users: Optional[Sequence[SecurePasswordStoreUserArgs]] = None)
@overload
def SecurePasswordStore(resource_name: str,
args: SecurePasswordStoreArgs,
opts: Optional[ResourceOptions] = None)
func NewSecurePasswordStore(ctx *Context, name string, args SecurePasswordStoreArgs, opts ...ResourceOption) (*SecurePasswordStore, error)
public SecurePasswordStore(string name, SecurePasswordStoreArgs args, CustomResourceOptions? opts = null)
public SecurePasswordStore(String name, SecurePasswordStoreArgs args)
public SecurePasswordStore(String name, SecurePasswordStoreArgs args, CustomResourceOptions options)
type: okta:app:SecurePasswordStore
properties: # The arguments to resource properties.
options: # 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.
- resource_name str
- The unique name of the resource.
- args SecurePasswordStoreArgs
- 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 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.
- name String
- The unique name of the resource.
- args SecurePasswordStoreArgs
- The arguments to resource properties.
- options 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 Architecture and Concepts 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
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.
- 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"
.- Enduser
Note string Application notes for end users.
- Groups List<string>
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- User
Name stringTemplate Username template. Default:
"${source.login}"
- User
Name stringTemplate Push Status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- User
Name stringTemplate Suffix Username template suffix.
- User
Name stringTemplate Type Username template type. Default:
"BUILT_IN"
.- Users
List<Secure
Password Store User Args> The users assigned to the application. See
okta.app.User
for a more flexible approach.The direct configuration of users in this app resource is deprecated, please ensure you use the resource
okta_app_user
for this functionality.
- 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
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.
- 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"
.- Enduser
Note string Application notes for end users.
- Groups []string
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- User
Name stringTemplate Username template. Default:
"${source.login}"
- User
Name stringTemplate Push Status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- User
Name stringTemplate Suffix Username template suffix.
- User
Name stringTemplate Type Username template type. Default:
"BUILT_IN"
.- Users
[]Secure
Password Store User Args The users assigned to the application. See
okta.app.User
for a more flexible approach.The direct configuration of users in this app resource is deprecated, please ensure you use the resource
okta_app_user
for this functionality.
- 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
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.
- 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"
.- enduser
Note String Application notes for end users.
- groups List<String>
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- String
Shared password, required for certain schemes.
- String
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- user
Name StringTemplate Username template. Default:
"${source.login}"
- user
Name StringTemplate Push Status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- user
Name StringTemplate Suffix Username template suffix.
- user
Name StringTemplate Type Username template type. Default:
"BUILT_IN"
.- users
List<Secure
Password Store User Args> The users assigned to the application. See
okta.app.User
for a more flexible approach.The direct configuration of users in this app resource is deprecated, please ensure you use the resource
okta_app_user
for this functionality.
- 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
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.
- 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"
.- enduser
Note string Application notes for end users.
- groups string[]
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- user
Name stringTemplate Username template. Default:
"${source.login}"
- user
Name stringTemplate Push Status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- user
Name stringTemplate Suffix Username template suffix.
- user
Name stringTemplate Type Username template type. Default:
"BUILT_IN"
.- users
Secure
Password Store User Args[] The users assigned to the application. See
okta.app.User
for a more flexible approach.The direct configuration of users in this app resource is deprecated, please ensure you use the resource
okta_app_user
for this functionality.
- 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_
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.
- 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"
.- enduser_
note str Application notes for end users.
- groups Sequence[str]
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- str
Shared password, required for certain schemes.
- str
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- user_
name_ strtemplate Username template. Default:
"${source.login}"
- user_
name_ strtemplate_ push_ status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- user_
name_ strtemplate_ suffix Username template suffix.
- user_
name_ strtemplate_ type Username template type. Default:
"BUILT_IN"
.- users
Sequence[Secure
Password Store User Args] The users assigned to the application. See
okta.app.User
for a more flexible approach.The direct configuration of users in this app resource is deprecated, please ensure you use the resource
okta_app_user
for this functionality.
- 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
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.
- 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"
.- enduser
Note String Application notes for end users.
- groups List<String>
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 file path to the logo. The file must be in PNG, JPG, or GIF format, and less than 1 MB in size.
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- String
Shared password, required for certain schemes.
- String
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- user
Name StringTemplate Username template. Default:
"${source.login}"
- user
Name StringTemplate Push Status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- user
Name StringTemplate Suffix Username template suffix.
- user
Name StringTemplate Type Username template type. Default:
"BUILT_IN"
.- users List<Property Map>
The users assigned to the application. See
okta.app.User
for a more flexible approach.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 SecurePasswordStore resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Logo
Url string URL of the application's logo
- Name string
Name assigned to the application by Okta.
- Sign
On stringMode Sign-on mode of application.
- Id string
The provider-assigned unique ID for this managed resource.
- Logo
Url string URL of the application's logo
- Name string
Name assigned to the application by Okta.
- Sign
On stringMode Sign-on mode of application.
- id String
The provider-assigned unique ID for this managed resource.
- logo
Url String URL of the application's logo
- name String
Name assigned to the application by Okta.
- sign
On StringMode Sign-on mode of application.
- id string
The provider-assigned unique ID for this managed resource.
- logo
Url string URL of the application's logo
- name string
Name assigned to the application by Okta.
- sign
On 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 assigned to the application by Okta.
- sign_
on_ strmode Sign-on mode of application.
- id String
The provider-assigned unique ID for this managed resource.
- logo
Url String URL of the application's logo
- name String
Name assigned to the application by Okta.
- sign
On StringMode Sign-on mode of application.
Look up 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): SecurePasswordStore
@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,
credentials_scheme: Optional[str] = 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,
optional_field1: Optional[str] = None,
optional_field1_value: Optional[str] = None,
optional_field2: Optional[str] = None,
optional_field2_value: Optional[str] = None,
optional_field3: Optional[str] = None,
optional_field3_value: Optional[str] = None,
password_field: Optional[str] = None,
reveal_password: Optional[bool] = None,
shared_password: Optional[str] = None,
shared_username: 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,
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,
users: Optional[Sequence[SecurePasswordStoreUserArgs]] = None) -> SecurePasswordStore
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)
public static SecurePasswordStore get(String name, Output<String> id, SecurePasswordStoreState 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.
- 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"
.- Enduser
Note string Application notes for end users.
- Groups List<string>
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 display name of the Application.
- 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.
- Logo
Url string URL of the application's logo
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- Url string
Login URL.
- User
Name stringTemplate Username template. Default:
"${source.login}"
- User
Name stringTemplate Push Status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- User
Name stringTemplate Suffix Username template suffix.
- User
Name stringTemplate Type Username template type. Default:
"BUILT_IN"
.- Username
Field string Login username field.
- Users
List<Secure
Password Store User Args> The users assigned to the application. See
okta.app.User
for a more flexible approach.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.
- 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"
.- Enduser
Note string Application notes for end users.
- Groups []string
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 display name of the Application.
- 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.
- Logo
Url string URL of the application's logo
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- Url string
Login URL.
- User
Name stringTemplate Username template. Default:
"${source.login}"
- User
Name stringTemplate Push Status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- User
Name stringTemplate Suffix Username template suffix.
- User
Name stringTemplate Type Username template type. Default:
"BUILT_IN"
.- Username
Field string Login username field.
- Users
[]Secure
Password Store User Args The users assigned to the application. See
okta.app.User
for a more flexible approach.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.
- 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"
.- enduser
Note String Application notes for end users.
- groups List<String>
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 display name of the Application.
- 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.
- logo
Url String URL of the application's logo
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- String
Shared password, required for certain schemes.
- String
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- url String
Login URL.
- user
Name StringTemplate Username template. Default:
"${source.login}"
- user
Name StringTemplate Push Status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- user
Name StringTemplate Suffix Username template suffix.
- user
Name StringTemplate Type Username template type. Default:
"BUILT_IN"
.- username
Field String Login username field.
- users
List<Secure
Password Store User Args> The users assigned to the application. See
okta.app.User
for a more flexible approach.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.
- 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"
.- enduser
Note string Application notes for end users.
- groups string[]
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 display name of the Application.
- 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.
- logo
Url string URL of the application's logo
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- string
Shared password, required for certain schemes.
- string
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- url string
Login URL.
- user
Name stringTemplate Username template. Default:
"${source.login}"
- user
Name stringTemplate Push Status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- user
Name stringTemplate Suffix Username template suffix.
- user
Name stringTemplate Type Username template type. Default:
"BUILT_IN"
.- username
Field string Login username field.
- users
Secure
Password Store User Args[] The users assigned to the application. See
okta.app.User
for a more flexible approach.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.
- 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"
.- enduser_
note str Application notes for end users.
- groups Sequence[str]
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 display name of the Application.
- 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 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- str
Shared password, required for certain schemes.
- str
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- url str
Login URL.
- user_
name_ strtemplate Username template. Default:
"${source.login}"
- user_
name_ strtemplate_ push_ status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- user_
name_ strtemplate_ suffix Username template suffix.
- user_
name_ strtemplate_ type Username template type. Default:
"BUILT_IN"
.- username_
field str Login username field.
- users
Sequence[Secure
Password Store User Args] The users assigned to the application. See
okta.app.User
for a more flexible approach.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.
- 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"
.- enduser
Note String Application notes for end users.
- groups List<String>
Groups associated with the application. See
okta.app.GroupAssignment
for a more flexible approach.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 display name of the Application.
- 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.
- logo
Url String URL of the application's logo
- 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. It can not be set to
true
ifcredentials_scheme
is"ADMIN_SETS_CREDENTIALS"
,"SHARED_USERNAME_AND_PASSWORD"
or"EXTERNAL_PASSWORD_SYNC"
.- String
Shared password, required for certain schemes.
- String
Shared username, required for certain schemes.
- 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. By default, it is
"ACTIVE"
.- url String
Login URL.
- user
Name StringTemplate Username template. Default:
"${source.login}"
- user
Name StringTemplate Push Status Push username on update. Valid values:
"PUSH"
and"DONT_PUSH"
.- user
Name StringTemplate Suffix Username template suffix.
- user
Name StringTemplate Type Username template type. Default:
"BUILT_IN"
.- username
Field String Login username field.
- users List<Property Map>
The users assigned to the application. See
okta.app.User
for a more flexible approach.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
SecurePasswordStoreUser
Import
Secure Password Store Application can be imported via the Okta ID.
$ pulumi import okta:app/securePasswordStore:SecurePasswordStore 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/securePasswordStore:SecurePasswordStore example <app id>/skip_users
$ pulumi import okta:app/securePasswordStore:SecurePasswordStore example <app id>/skip_users/skip_groups
$ pulumi import okta:app/securePasswordStore:SecurePasswordStore 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.