Module trustedorigin

This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-okta repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-okta repo.

Resources

Others

Resources

Resource Origin

class Origin extends CustomResource

Creates a Trusted Origin.

This resource allows you to create and configure an Trusted Origin.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = new okta.trustedorigin.Origin("example", {
    origin: "https://example.com",
    scopes: ["CORS"],
});

constructor

new Origin(name: string, args: OriginArgs, opts?: pulumi.CustomResourceOptions)

Create a Origin resource with the given unique name, arguments, and options.

  • name The unique name of the resource.
  • args The arguments to use to populate this resource's properties.
  • opts A bag of options that control this resource's behavior.

method get

public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OriginState, opts?: pulumi.CustomResourceOptions): Origin

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

method getProvider

getProvider(moduleMember: string): ProviderResource | undefined

method isInstance

public static isInstance(obj: any): obj is Origin

Returns true if the given object is an instance of Origin. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.

property active

public active: pulumi.Output<boolean | undefined>;

Whether the Trusted Origin is active or not - can only be issued post-creation.

property id

id: Output<ID>;

id is the provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

property name

public name: pulumi.Output<string>;

Name of the Trusted Origin Resource.

property origin

public origin: pulumi.Output<string>;

The origin to trust.

property scopes

public scopes: pulumi.Output<string[]>;

Scopes of the Trusted Origin - can be "CORS" and/or "REDIRECT".

property urn

urn: Output<URN>;

urn is the stable logical URN used to distinctly address a resource, both before and after deployments.

Others

interface OriginArgs

interface OriginArgs

The set of arguments for constructing a Origin resource.

property active

active?: pulumi.Input<boolean>;

Whether the Trusted Origin is active or not - can only be issued post-creation.

property name

name?: pulumi.Input<string>;

Name of the Trusted Origin Resource.

property origin

origin: pulumi.Input<string>;

The origin to trust.

property scopes

scopes: pulumi.Input<pulumi.Input<string>[]>;

Scopes of the Trusted Origin - can be "CORS" and/or "REDIRECT".

interface OriginState

interface OriginState

Input properties used for looking up and filtering Origin resources.

property active

active?: pulumi.Input<boolean>;

Whether the Trusted Origin is active or not - can only be issued post-creation.

property name

name?: pulumi.Input<string>;

Name of the Trusted Origin Resource.

property origin

origin?: pulumi.Input<string>;

The origin to trust.

property scopes

scopes?: pulumi.Input<pulumi.Input<string>[]>;

Scopes of the Trusted Origin - can be "CORS" and/or "REDIRECT".