okta.PreviewSigninPage
Explore with Pulumi AI
Manage the preview signin page of a brand
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.okta.Brand;
import com.pulumi.okta.BrandArgs;
import com.pulumi.okta.PreviewSigninPage;
import com.pulumi.okta.PreviewSigninPageArgs;
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 test = new Brand("test", BrandArgs.builder()
.name("testBrand")
.locale("en")
.build());
var testPreviewSigninPage = new PreviewSigninPage("testPreviewSigninPage", PreviewSigninPageArgs.builder()
.brandId(oktaBrand.test().id())
.pageContent("""
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex,nofollow" />
<!-- Styles generated from theme -->
<link href="{{themedStylesUrl}}" rel="stylesheet" type="text/css">
<!-- Favicon from theme -->
<link rel="shortcut icon" href="{{faviconUrl}}" type="image/x-icon"/>
<title>{{pageTitle}}</title>
{{{SignInWidgetResources}}}
<style nonce="{{nonceValue}}">
#login-bg-image-id {
background-image: {{bgImageUrl}}
}
</style>
</head>
<body>
<div id="login-bg-image-id" class="login-bg-image tb--background"></div>
<div id="okta-login-container"></div>
<!--
"OktaUtil" defines a global OktaUtil object
that contains methods used to complete the Okta login flow.
-->
{{{OktaUtil}}}
<script type="text/javascript" nonce="{{nonceValue}}">
// "config" object contains default widget configuration
// with any custom overrides defined in your admin settings.
var config = OktaUtil.getSignInWidgetConfig();
// Render the Okta Sign-In Widget
var oktaSignIn = new OktaSignIn(config);
oktaSignIn.renderEl({ el: '#okta-login-container' },
OktaUtil.completeLogin,
function(error) {
// Logs errors that occur when configuring the widget.
// Remove or replace this with your own custom error handler.
console.log(error.message, error);
}
);
</script>
</body>
</html>
""")
.widgetVersion("^6")
.widgetCustomizations(PreviewSigninPageWidgetCustomizationsArgs.builder()
.widgetGeneration("G3")
.build())
.build());
}
}
resources:
test:
type: okta:Brand
properties:
name: testBrand
locale: en
testPreviewSigninPage:
type: okta:PreviewSigninPage
name: test
properties:
brandId: ${oktaBrand.test.id}
pageContent: |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex,nofollow" />
<!-- Styles generated from theme -->
<link href="{{themedStylesUrl}}" rel="stylesheet" type="text/css">
<!-- Favicon from theme -->
<link rel="shortcut icon" href="{{faviconUrl}}" type="image/x-icon"/>
<title>{{pageTitle}}</title>
{{{SignInWidgetResources}}}
<style nonce="{{nonceValue}}">
#login-bg-image-id {
background-image: {{bgImageUrl}}
}
</style>
</head>
<body>
<div id="login-bg-image-id" class="login-bg-image tb--background"></div>
<div id="okta-login-container"></div>
<!--
"OktaUtil" defines a global OktaUtil object
that contains methods used to complete the Okta login flow.
-->
{{{OktaUtil}}}
<script type="text/javascript" nonce="{{nonceValue}}">
// "config" object contains default widget configuration
// with any custom overrides defined in your admin settings.
var config = OktaUtil.getSignInWidgetConfig();
// Render the Okta Sign-In Widget
var oktaSignIn = new OktaSignIn(config);
oktaSignIn.renderEl({ el: '#okta-login-container' },
OktaUtil.completeLogin,
function(error) {
// Logs errors that occur when configuring the widget.
// Remove or replace this with your own custom error handler.
console.log(error.message, error);
}
);
</script>
</body>
</html>
widgetVersion: ^6
widgetCustomizations:
- widgetGeneration: G3
Create PreviewSigninPage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PreviewSigninPage(name: string, args: PreviewSigninPageArgs, opts?: CustomResourceOptions);
@overload
def PreviewSigninPage(resource_name: str,
args: PreviewSigninPageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PreviewSigninPage(resource_name: str,
opts: Optional[ResourceOptions] = None,
brand_id: Optional[str] = None,
page_content: Optional[str] = None,
widget_version: Optional[str] = None,
content_security_policy_setting: Optional[PreviewSigninPageContentSecurityPolicySettingArgs] = None,
widget_customizations: Optional[PreviewSigninPageWidgetCustomizationsArgs] = None)
func NewPreviewSigninPage(ctx *Context, name string, args PreviewSigninPageArgs, opts ...ResourceOption) (*PreviewSigninPage, error)
public PreviewSigninPage(string name, PreviewSigninPageArgs args, CustomResourceOptions? opts = null)
public PreviewSigninPage(String name, PreviewSigninPageArgs args)
public PreviewSigninPage(String name, PreviewSigninPageArgs args, CustomResourceOptions options)
type: okta:PreviewSigninPage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PreviewSigninPageArgs
- 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 PreviewSigninPageArgs
- 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 PreviewSigninPageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PreviewSigninPageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PreviewSigninPageArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var previewSigninPageResource = new Okta.PreviewSigninPage("previewSigninPageResource", new()
{
BrandId = "string",
PageContent = "string",
WidgetVersion = "string",
ContentSecurityPolicySetting = new Okta.Inputs.PreviewSigninPageContentSecurityPolicySettingArgs
{
Mode = "string",
ReportUri = "string",
SrcLists = new[]
{
"string",
},
},
WidgetCustomizations = new Okta.Inputs.PreviewSigninPageWidgetCustomizationsArgs
{
WidgetGeneration = "string",
HelpUrl = "string",
UsernameInfoTip = "string",
CustomLink1Label = "string",
CustomLink1Url = "string",
CustomLink2Label = "string",
CustomLink2Url = "string",
ForgotPasswordLabel = "string",
PasswordInfoTip = "string",
AuthenticatorPageCustomLinkUrl = "string",
ClassicRecoveryFlowEmailOrUsernameLabel = "string",
ForgotPasswordUrl = "string",
PasswordLabel = "string",
ShowPasswordVisibilityToggle = false,
ShowUserIdentifier = false,
SignInLabel = "string",
UnlockAccountLabel = "string",
UnlockAccountUrl = "string",
AuthenticatorPageCustomLinkLabel = "string",
UsernameLabel = "string",
HelpLabel = "string",
},
});
example, err := okta.NewPreviewSigninPage(ctx, "previewSigninPageResource", &okta.PreviewSigninPageArgs{
BrandId: pulumi.String("string"),
PageContent: pulumi.String("string"),
WidgetVersion: pulumi.String("string"),
ContentSecurityPolicySetting: &okta.PreviewSigninPageContentSecurityPolicySettingArgs{
Mode: pulumi.String("string"),
ReportUri: pulumi.String("string"),
SrcLists: pulumi.StringArray{
pulumi.String("string"),
},
},
WidgetCustomizations: &okta.PreviewSigninPageWidgetCustomizationsArgs{
WidgetGeneration: pulumi.String("string"),
HelpUrl: pulumi.String("string"),
UsernameInfoTip: pulumi.String("string"),
CustomLink1Label: pulumi.String("string"),
CustomLink1Url: pulumi.String("string"),
CustomLink2Label: pulumi.String("string"),
CustomLink2Url: pulumi.String("string"),
ForgotPasswordLabel: pulumi.String("string"),
PasswordInfoTip: pulumi.String("string"),
AuthenticatorPageCustomLinkUrl: pulumi.String("string"),
ClassicRecoveryFlowEmailOrUsernameLabel: pulumi.String("string"),
ForgotPasswordUrl: pulumi.String("string"),
PasswordLabel: pulumi.String("string"),
ShowPasswordVisibilityToggle: pulumi.Bool(false),
ShowUserIdentifier: pulumi.Bool(false),
SignInLabel: pulumi.String("string"),
UnlockAccountLabel: pulumi.String("string"),
UnlockAccountUrl: pulumi.String("string"),
AuthenticatorPageCustomLinkLabel: pulumi.String("string"),
UsernameLabel: pulumi.String("string"),
HelpLabel: pulumi.String("string"),
},
})
var previewSigninPageResource = new PreviewSigninPage("previewSigninPageResource", PreviewSigninPageArgs.builder()
.brandId("string")
.pageContent("string")
.widgetVersion("string")
.contentSecurityPolicySetting(PreviewSigninPageContentSecurityPolicySettingArgs.builder()
.mode("string")
.reportUri("string")
.srcLists("string")
.build())
.widgetCustomizations(PreviewSigninPageWidgetCustomizationsArgs.builder()
.widgetGeneration("string")
.helpUrl("string")
.usernameInfoTip("string")
.customLink1Label("string")
.customLink1Url("string")
.customLink2Label("string")
.customLink2Url("string")
.forgotPasswordLabel("string")
.passwordInfoTip("string")
.authenticatorPageCustomLinkUrl("string")
.classicRecoveryFlowEmailOrUsernameLabel("string")
.forgotPasswordUrl("string")
.passwordLabel("string")
.showPasswordVisibilityToggle(false)
.showUserIdentifier(false)
.signInLabel("string")
.unlockAccountLabel("string")
.unlockAccountUrl("string")
.authenticatorPageCustomLinkLabel("string")
.usernameLabel("string")
.helpLabel("string")
.build())
.build());
preview_signin_page_resource = okta.PreviewSigninPage("previewSigninPageResource",
brand_id="string",
page_content="string",
widget_version="string",
content_security_policy_setting=okta.PreviewSigninPageContentSecurityPolicySettingArgs(
mode="string",
report_uri="string",
src_lists=["string"],
),
widget_customizations=okta.PreviewSigninPageWidgetCustomizationsArgs(
widget_generation="string",
help_url="string",
username_info_tip="string",
custom_link1_label="string",
custom_link1_url="string",
custom_link2_label="string",
custom_link2_url="string",
forgot_password_label="string",
password_info_tip="string",
authenticator_page_custom_link_url="string",
classic_recovery_flow_email_or_username_label="string",
forgot_password_url="string",
password_label="string",
show_password_visibility_toggle=False,
show_user_identifier=False,
sign_in_label="string",
unlock_account_label="string",
unlock_account_url="string",
authenticator_page_custom_link_label="string",
username_label="string",
help_label="string",
))
const previewSigninPageResource = new okta.PreviewSigninPage("previewSigninPageResource", {
brandId: "string",
pageContent: "string",
widgetVersion: "string",
contentSecurityPolicySetting: {
mode: "string",
reportUri: "string",
srcLists: ["string"],
},
widgetCustomizations: {
widgetGeneration: "string",
helpUrl: "string",
usernameInfoTip: "string",
customLink1Label: "string",
customLink1Url: "string",
customLink2Label: "string",
customLink2Url: "string",
forgotPasswordLabel: "string",
passwordInfoTip: "string",
authenticatorPageCustomLinkUrl: "string",
classicRecoveryFlowEmailOrUsernameLabel: "string",
forgotPasswordUrl: "string",
passwordLabel: "string",
showPasswordVisibilityToggle: false,
showUserIdentifier: false,
signInLabel: "string",
unlockAccountLabel: "string",
unlockAccountUrl: "string",
authenticatorPageCustomLinkLabel: "string",
usernameLabel: "string",
helpLabel: "string",
},
});
type: okta:PreviewSigninPage
properties:
brandId: string
contentSecurityPolicySetting:
mode: string
reportUri: string
srcLists:
- string
pageContent: string
widgetCustomizations:
authenticatorPageCustomLinkLabel: string
authenticatorPageCustomLinkUrl: string
classicRecoveryFlowEmailOrUsernameLabel: string
customLink1Label: string
customLink1Url: string
customLink2Label: string
customLink2Url: string
forgotPasswordLabel: string
forgotPasswordUrl: string
helpLabel: string
helpUrl: string
passwordInfoTip: string
passwordLabel: string
showPasswordVisibilityToggle: false
showUserIdentifier: false
signInLabel: string
unlockAccountLabel: string
unlockAccountUrl: string
usernameInfoTip: string
usernameLabel: string
widgetGeneration: string
widgetVersion: string
PreviewSigninPage 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 PreviewSigninPage resource accepts the following input properties:
- Brand
Id string - brand id of the preview signin page
- Page
Content string - page content of the preview signin page
- Widget
Version string - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- Content
Security PreviewPolicy Setting Signin Page Content Security Policy Setting - Widget
Customizations PreviewSignin Page Widget Customizations
- Brand
Id string - brand id of the preview signin page
- Page
Content string - page content of the preview signin page
- Widget
Version string - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- Content
Security PreviewPolicy Setting Signin Page Content Security Policy Setting Args - Widget
Customizations PreviewSignin Page Widget Customizations Args
- brand
Id String - brand id of the preview signin page
- page
Content String - page content of the preview signin page
- widget
Version String - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- content
Security PreviewPolicy Setting Signin Page Content Security Policy Setting - widget
Customizations PreviewSignin Page Widget Customizations
- brand
Id string - brand id of the preview signin page
- page
Content string - page content of the preview signin page
- widget
Version string - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- content
Security PreviewPolicy Setting Signin Page Content Security Policy Setting - widget
Customizations PreviewSignin Page Widget Customizations
- brand_
id str - brand id of the preview signin page
- page_
content str - page content of the preview signin page
- widget_
version str - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- content_
security_ Previewpolicy_ setting Signin Page Content Security Policy Setting Args - widget_
customizations PreviewSignin Page Widget Customizations Args
- brand
Id String - brand id of the preview signin page
- page
Content String - page content of the preview signin page
- widget
Version String - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- content
Security Property MapPolicy Setting - widget
Customizations Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the PreviewSigninPage resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing PreviewSigninPage Resource
Get an existing PreviewSigninPage 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?: PreviewSigninPageState, opts?: CustomResourceOptions): PreviewSigninPage
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
brand_id: Optional[str] = None,
content_security_policy_setting: Optional[PreviewSigninPageContentSecurityPolicySettingArgs] = None,
page_content: Optional[str] = None,
widget_customizations: Optional[PreviewSigninPageWidgetCustomizationsArgs] = None,
widget_version: Optional[str] = None) -> PreviewSigninPage
func GetPreviewSigninPage(ctx *Context, name string, id IDInput, state *PreviewSigninPageState, opts ...ResourceOption) (*PreviewSigninPage, error)
public static PreviewSigninPage Get(string name, Input<string> id, PreviewSigninPageState? state, CustomResourceOptions? opts = null)
public static PreviewSigninPage get(String name, Output<String> id, PreviewSigninPageState 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.
- Brand
Id string - brand id of the preview signin page
- Content
Security PreviewPolicy Setting Signin Page Content Security Policy Setting - Page
Content string - page content of the preview signin page
- Widget
Customizations PreviewSignin Page Widget Customizations - Widget
Version string - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- Brand
Id string - brand id of the preview signin page
- Content
Security PreviewPolicy Setting Signin Page Content Security Policy Setting Args - Page
Content string - page content of the preview signin page
- Widget
Customizations PreviewSignin Page Widget Customizations Args - Widget
Version string - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- brand
Id String - brand id of the preview signin page
- content
Security PreviewPolicy Setting Signin Page Content Security Policy Setting - page
Content String - page content of the preview signin page
- widget
Customizations PreviewSignin Page Widget Customizations - widget
Version String - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- brand
Id string - brand id of the preview signin page
- content
Security PreviewPolicy Setting Signin Page Content Security Policy Setting - page
Content string - page content of the preview signin page
- widget
Customizations PreviewSignin Page Widget Customizations - widget
Version string - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- brand_
id str - brand id of the preview signin page
- content_
security_ Previewpolicy_ setting Signin Page Content Security Policy Setting Args - page_
content str - page content of the preview signin page
- widget_
customizations PreviewSignin Page Widget Customizations Args - widget_
version str - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
- brand
Id String - brand id of the preview signin page
- content
Security Property MapPolicy Setting - page
Content String - page content of the preview signin page
- widget
Customizations Property Map - widget
Version String - widget version specified as a Semver. The following are currently supported *, ^1, ^2, ^3, ^4, ^5, ^6, ^7, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.21, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, 7.12, 7.13.
Supporting Types
PreviewSigninPageContentSecurityPolicySetting, PreviewSigninPageContentSecurityPolicySettingArgs
- mode str
- enforced or report_only
- report_
uri str - src_
lists Sequence[str]
PreviewSigninPageWidgetCustomizations, PreviewSigninPageWidgetCustomizationsArgs
- Widget
Generation string - Authenticator
Page stringCustom Link Label - Authenticator
Page stringCustom Link Url - Classic
Recovery stringFlow Email Or Username Label - Custom
Link1Label string - Custom
Link1Url string - Custom
Link2Label string - Custom
Link2Url string - Forgot
Password stringLabel - Forgot
Password stringUrl - Help
Label string - Help
Url string - Password
Info stringTip - Password
Label string - Show
Password boolVisibility Toggle - Show
User boolIdentifier - Sign
In stringLabel - Unlock
Account stringLabel - Unlock
Account stringUrl - Username
Info stringTip - Username
Label string
- Widget
Generation string - Authenticator
Page stringCustom Link Label - Authenticator
Page stringCustom Link Url - Classic
Recovery stringFlow Email Or Username Label - Custom
Link1Label string - Custom
Link1Url string - Custom
Link2Label string - Custom
Link2Url string - Forgot
Password stringLabel - Forgot
Password stringUrl - Help
Label string - Help
Url string - Password
Info stringTip - Password
Label string - Show
Password boolVisibility Toggle - Show
User boolIdentifier - Sign
In stringLabel - Unlock
Account stringLabel - Unlock
Account stringUrl - Username
Info stringTip - Username
Label string
- widget
Generation String - authenticator
Page StringCustom Link Label - authenticator
Page StringCustom Link Url - classic
Recovery StringFlow Email Or Username Label - custom
Link1Label String - custom
Link1Url String - custom
Link2Label String - custom
Link2Url String - forgot
Password StringLabel - forgot
Password StringUrl - help
Label String - help
Url String - password
Info StringTip - password
Label String - show
Password BooleanVisibility Toggle - show
User BooleanIdentifier - sign
In StringLabel - unlock
Account StringLabel - unlock
Account StringUrl - username
Info StringTip - username
Label String
- widget
Generation string - authenticator
Page stringCustom Link Label - authenticator
Page stringCustom Link Url - classic
Recovery stringFlow Email Or Username Label - custom
Link1Label string - custom
Link1Url string - custom
Link2Label string - custom
Link2Url string - forgot
Password stringLabel - forgot
Password stringUrl - help
Label string - help
Url string - password
Info stringTip - password
Label string - show
Password booleanVisibility Toggle - show
User booleanIdentifier - sign
In stringLabel - unlock
Account stringLabel - unlock
Account stringUrl - username
Info stringTip - username
Label string
- widget_
generation str - authenticator_
page_ strcustom_ link_ label - authenticator_
page_ strcustom_ link_ url - classic_
recovery_ strflow_ email_ or_ username_ label - custom_
link1_ strlabel - custom_
link1_ strurl - custom_
link2_ strlabel - custom_
link2_ strurl - forgot_
password_ strlabel - forgot_
password_ strurl - help_
label str - help_
url str - password_
info_ strtip - password_
label str - show_
password_ boolvisibility_ toggle - show_
user_ boolidentifier - sign_
in_ strlabel - unlock_
account_ strlabel - unlock_
account_ strurl - username_
info_ strtip - username_
label str
- widget
Generation String - authenticator
Page StringCustom Link Label - authenticator
Page StringCustom Link Url - classic
Recovery StringFlow Email Or Username Label - custom
Link1Label String - custom
Link1Url String - custom
Link2Label String - custom
Link2Url String - forgot
Password StringLabel - forgot
Password StringUrl - help
Label String - help
Url String - password
Info StringTip - password
Label String - show
Password BooleanVisibility Toggle - show
User BooleanIdentifier - sign
In StringLabel - unlock
Account StringLabel - unlock
Account StringUrl - username
Info StringTip - username
Label String
Package Details
- Repository
- Okta pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
okta
Terraform Provider.