Module network

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 Zone

class Zone extends CustomResource

Creates an Okta Network Zone.

This resource allows you to create and configure an Okta Network Zone.

Example Usage

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

const example = new okta.network.Zone("example", {
    gateways: [
        "1.2.3.4/24",
        "2.3.4.5-2.3.4.15",
    ],
    proxies: [
        "2.2.3.4/24",
        "3.3.4.5-3.3.4.15",
    ],
    type: "IP",
});

constructor

new Zone(name: string, args: ZoneArgs, opts?: pulumi.CustomResourceOptions)

Create a Zone 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?: ZoneState, opts?: pulumi.CustomResourceOptions): Zone

Get an existing Zone 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 Zone

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

property dynamicLocations

public dynamicLocations: pulumi.Output<string[] | undefined>;

Array of locations ISO-3166-1(2). Format code: countryCode OR countryCode-regionCode.

property gateways

public gateways: pulumi.Output<string[] | undefined>;

Array of values in CIDR/range form.

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 Network Zone Resource.

property proxies

public proxies: pulumi.Output<string[] | undefined>;

Array of values in CIDR/range form.

property type

public type: pulumi.Output<string>;

Type of the Network Zone - can either be IP or DYNAMIC only.

property urn

urn: Output<URN>;

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

Others

interface ZoneArgs

interface ZoneArgs

The set of arguments for constructing a Zone resource.

property dynamicLocations

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

Array of locations ISO-3166-1(2). Format code: countryCode OR countryCode-regionCode.

property gateways

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

Array of values in CIDR/range form.

property name

name?: pulumi.Input<string>;

Name of the Network Zone Resource.

property proxies

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

Array of values in CIDR/range form.

property type

type: pulumi.Input<string>;

Type of the Network Zone - can either be IP or DYNAMIC only.

interface ZoneState

interface ZoneState

Input properties used for looking up and filtering Zone resources.

property dynamicLocations

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

Array of locations ISO-3166-1(2). Format code: countryCode OR countryCode-regionCode.

property gateways

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

Array of values in CIDR/range form.

property name

name?: pulumi.Input<string>;

Name of the Network Zone Resource.

property proxies

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

Array of values in CIDR/range form.

property type

type?: pulumi.Input<string>;

Type of the Network Zone - can either be IP or DYNAMIC only.