Show / Hide Table of Contents

Namespace Pulumi.Okta.Network

Classes

Zone

Creates an Okta Network Zone.

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

Example Usage

using Pulumi;
using Okta = Pulumi.Okta;

class MyStack : Stack
{
public MyStack()
{
    var example = new Okta.Network.Zone("example", new Okta.Network.ZoneArgs
    {
        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",
    });
}

}

ZoneArgs

ZoneState

Back to top Copyright 2016-2020, Pulumi Corporation.