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",
});
}
}
package main
import (
"github.com/pulumi/pulumi-okta/sdk/v3/go/okta/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := network.NewZone(ctx, "example", &network.ZoneArgs{
Gateways: pulumi.StringArray{
pulumi.String("1.2.3.4/24"),
pulumi.String("2.3.4.5-2.3.4.15"),
},
Proxies: pulumi.StringArray{
pulumi.String("2.2.3.4/24"),
pulumi.String("3.3.4.5-3.3.4.15"),
},
Type: pulumi.String("IP"),
})
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_okta as okta
example = 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")
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",
});
Create a Zone Resource
new Zone(name: string, args: ZoneArgs, opts?: CustomResourceOptions);
@overload
def Zone(resource_name: str,
opts: Optional[ResourceOptions] = None,
dynamic_locations: Optional[Sequence[str]] = None,
gateways: Optional[Sequence[str]] = None,
name: Optional[str] = None,
proxies: Optional[Sequence[str]] = None,
type: Optional[str] = None,
usage: Optional[str] = None)
@overload
def Zone(resource_name: str,
args: ZoneArgs,
opts: Optional[ResourceOptions] = None)
func NewZone(ctx *Context, name string, args ZoneArgs, opts ...ResourceOption) (*Zone, error)
public Zone(string name, ZoneArgs args, CustomResourceOptions? opts = null)
- name string
- The unique name of the resource.
- args ZoneArgs
- 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 ZoneArgs
- 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 ZoneArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZoneArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
Zone Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Zone resource accepts the following input properties:
- Type string
- Type of the Network Zone - can either be
"IP"
or"DYNAMIC"
only. - Dynamic
Locations List<string> - Array of locations ISO-3166-1 and ISO-3166-2. Format code: countryCode OR countryCode-regionCode.
- Gateways List<string>
- Array of values in CIDR/range form.
- Name string
- Name of the Network Zone Resource.
- Proxies List<string>
- Array of values in CIDR/range form. Can not be set if
usage
is set to"BLOCKLIST"
. - Usage string
- Usage of the Network Zone - can be either
"POLICY"
or"BLOCKLIST"
. By default, it is"POLICY"
.
- Type string
- Type of the Network Zone - can either be
"IP"
or"DYNAMIC"
only. - Dynamic
Locations []string - Array of locations ISO-3166-1 and ISO-3166-2. Format code: countryCode OR countryCode-regionCode.
- Gateways []string
- Array of values in CIDR/range form.
- Name string
- Name of the Network Zone Resource.
- Proxies []string
- Array of values in CIDR/range form. Can not be set if
usage
is set to"BLOCKLIST"
. - Usage string
- Usage of the Network Zone - can be either
"POLICY"
or"BLOCKLIST"
. By default, it is"POLICY"
.
- type string
- Type of the Network Zone - can either be
"IP"
or"DYNAMIC"
only. - dynamic
Locations string[] - Array of locations ISO-3166-1 and ISO-3166-2. Format code: countryCode OR countryCode-regionCode.
- gateways string[]
- Array of values in CIDR/range form.
- name string
- Name of the Network Zone Resource.
- proxies string[]
- Array of values in CIDR/range form. Can not be set if
usage
is set to"BLOCKLIST"
. - usage string
- Usage of the Network Zone - can be either
"POLICY"
or"BLOCKLIST"
. By default, it is"POLICY"
.
- type str
- Type of the Network Zone - can either be
"IP"
or"DYNAMIC"
only. - dynamic_
locations Sequence[str] - Array of locations ISO-3166-1 and ISO-3166-2. Format code: countryCode OR countryCode-regionCode.
- gateways Sequence[str]
- Array of values in CIDR/range form.
- name str
- Name of the Network Zone Resource.
- proxies Sequence[str]
- Array of values in CIDR/range form. Can not be set if
usage
is set to"BLOCKLIST"
. - usage str
- Usage of the Network Zone - can be either
"POLICY"
or"BLOCKLIST"
. By default, it is"POLICY"
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Zone 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 str
- The provider-assigned unique ID for this managed resource.
Look up an Existing Zone Resource
Get an existing Zone 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?: ZoneState, opts?: CustomResourceOptions): Zone
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dynamic_locations: Optional[Sequence[str]] = None,
gateways: Optional[Sequence[str]] = None,
name: Optional[str] = None,
proxies: Optional[Sequence[str]] = None,
type: Optional[str] = None,
usage: Optional[str] = None) -> Zone
func GetZone(ctx *Context, name string, id IDInput, state *ZoneState, opts ...ResourceOption) (*Zone, error)
public static Zone Get(string name, Input<string> id, ZoneState? state, CustomResourceOptions? opts = null)
- 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.
The following state arguments are supported:
- Dynamic
Locations List<string> - Array of locations ISO-3166-1 and ISO-3166-2. Format code: countryCode OR countryCode-regionCode.
- Gateways List<string>
- Array of values in CIDR/range form.
- Name string
- Name of the Network Zone Resource.
- Proxies List<string>
- Array of values in CIDR/range form. Can not be set if
usage
is set to"BLOCKLIST"
. - Type string
- Type of the Network Zone - can either be
"IP"
or"DYNAMIC"
only. - Usage string
- Usage of the Network Zone - can be either
"POLICY"
or"BLOCKLIST"
. By default, it is"POLICY"
.
- Dynamic
Locations []string - Array of locations ISO-3166-1 and ISO-3166-2. Format code: countryCode OR countryCode-regionCode.
- Gateways []string
- Array of values in CIDR/range form.
- Name string
- Name of the Network Zone Resource.
- Proxies []string
- Array of values in CIDR/range form. Can not be set if
usage
is set to"BLOCKLIST"
. - Type string
- Type of the Network Zone - can either be
"IP"
or"DYNAMIC"
only. - Usage string
- Usage of the Network Zone - can be either
"POLICY"
or"BLOCKLIST"
. By default, it is"POLICY"
.
- dynamic
Locations string[] - Array of locations ISO-3166-1 and ISO-3166-2. Format code: countryCode OR countryCode-regionCode.
- gateways string[]
- Array of values in CIDR/range form.
- name string
- Name of the Network Zone Resource.
- proxies string[]
- Array of values in CIDR/range form. Can not be set if
usage
is set to"BLOCKLIST"
. - type string
- Type of the Network Zone - can either be
"IP"
or"DYNAMIC"
only. - usage string
- Usage of the Network Zone - can be either
"POLICY"
or"BLOCKLIST"
. By default, it is"POLICY"
.
- dynamic_
locations Sequence[str] - Array of locations ISO-3166-1 and ISO-3166-2. Format code: countryCode OR countryCode-regionCode.
- gateways Sequence[str]
- Array of values in CIDR/range form.
- name str
- Name of the Network Zone Resource.
- proxies Sequence[str]
- Array of values in CIDR/range form. Can not be set if
usage
is set to"BLOCKLIST"
. - type str
- Type of the Network Zone - can either be
"IP"
or"DYNAMIC"
only. - usage str
- Usage of the Network Zone - can be either
"POLICY"
or"BLOCKLIST"
. By default, it is"POLICY"
.
Import
Okta Network Zone can be imported via the Okta ID.
$ pulumi import okta:network/zone:Zone example <zone id>
Package Details
- Repository
- https://github.com/pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
okta
Terraform Provider.