1. Packages
  2. Zscaler Internet Access (ZIA)
  3. API Docs
  4. TrafficForwardingGRETunnel
Zscaler Internet Access v0.0.7 published on Tuesday, Jul 30, 2024 by Zscaler

zia.TrafficForwardingGRETunnel

Explore with Pulumi AI

zia logo
Zscaler Internet Access v0.0.7 published on Tuesday, Jul 30, 2024 by Zscaler

    Import

    Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZIA configurations into Terraform-compliant HashiCorp Configuration Language.

    Visit

    zia_traffic_forwarding_gre_tunnel can be imported by using <TUNNEL_ID> as the import ID.

    For example:

    $ pulumi import zia:index/trafficForwardingGRETunnel:TrafficForwardingGRETunnel example <tunnel_id>
    

    or

    $ pulumi import zia:index/trafficForwardingGRETunnel:TrafficForwardingGRETunnel example <engine_name>
    

    Create TrafficForwardingGRETunnel Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new TrafficForwardingGRETunnel(name: string, args: TrafficForwardingGRETunnelArgs, opts?: CustomResourceOptions);
    @overload
    def TrafficForwardingGRETunnel(resource_name: str,
                                   args: TrafficForwardingGRETunnelArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def TrafficForwardingGRETunnel(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   source_ip: Optional[str] = None,
                                   comment: Optional[str] = None,
                                   country_code: Optional[str] = None,
                                   internal_ip_range: Optional[str] = None,
                                   ip_unnumbered: Optional[bool] = None,
                                   primary_dest_vips: Optional[Sequence[TrafficForwardingGRETunnelPrimaryDestVipArgs]] = None,
                                   secondary_dest_vips: Optional[Sequence[TrafficForwardingGRETunnelSecondaryDestVipArgs]] = None,
                                   within_country: Optional[bool] = None)
    func NewTrafficForwardingGRETunnel(ctx *Context, name string, args TrafficForwardingGRETunnelArgs, opts ...ResourceOption) (*TrafficForwardingGRETunnel, error)
    public TrafficForwardingGRETunnel(string name, TrafficForwardingGRETunnelArgs args, CustomResourceOptions? opts = null)
    public TrafficForwardingGRETunnel(String name, TrafficForwardingGRETunnelArgs args)
    public TrafficForwardingGRETunnel(String name, TrafficForwardingGRETunnelArgs args, CustomResourceOptions options)
    
    type: zia:TrafficForwardingGRETunnel
    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 TrafficForwardingGRETunnelArgs
    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 TrafficForwardingGRETunnelArgs
    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 TrafficForwardingGRETunnelArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TrafficForwardingGRETunnelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TrafficForwardingGRETunnelArgs
    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 trafficForwardingGRETunnelResource = new Zia.TrafficForwardingGRETunnel("trafficForwardingGRETunnelResource", new()
    {
        SourceIp = "string",
        Comment = "string",
        CountryCode = "string",
        InternalIpRange = "string",
        IpUnnumbered = false,
        PrimaryDestVips = new[]
        {
            new Zia.Inputs.TrafficForwardingGRETunnelPrimaryDestVipArgs
            {
                Datacenter = "string",
                Id = 0,
                VirtualIp = "string",
            },
        },
        SecondaryDestVips = new[]
        {
            new Zia.Inputs.TrafficForwardingGRETunnelSecondaryDestVipArgs
            {
                Datacenter = "string",
                Id = 0,
                VirtualIp = "string",
            },
        },
        WithinCountry = false,
    });
    
    example, err := zia.NewTrafficForwardingGRETunnel(ctx, "trafficForwardingGRETunnelResource", &zia.TrafficForwardingGRETunnelArgs{
    	SourceIp:        pulumi.String("string"),
    	Comment:         pulumi.String("string"),
    	CountryCode:     pulumi.String("string"),
    	InternalIpRange: pulumi.String("string"),
    	IpUnnumbered:    pulumi.Bool(false),
    	PrimaryDestVips: zia.TrafficForwardingGRETunnelPrimaryDestVipArray{
    		&zia.TrafficForwardingGRETunnelPrimaryDestVipArgs{
    			Datacenter: pulumi.String("string"),
    			Id:         pulumi.Int(0),
    			VirtualIp:  pulumi.String("string"),
    		},
    	},
    	SecondaryDestVips: zia.TrafficForwardingGRETunnelSecondaryDestVipArray{
    		&zia.TrafficForwardingGRETunnelSecondaryDestVipArgs{
    			Datacenter: pulumi.String("string"),
    			Id:         pulumi.Int(0),
    			VirtualIp:  pulumi.String("string"),
    		},
    	},
    	WithinCountry: pulumi.Bool(false),
    })
    
    var trafficForwardingGRETunnelResource = new TrafficForwardingGRETunnel("trafficForwardingGRETunnelResource", TrafficForwardingGRETunnelArgs.builder()
        .sourceIp("string")
        .comment("string")
        .countryCode("string")
        .internalIpRange("string")
        .ipUnnumbered(false)
        .primaryDestVips(TrafficForwardingGRETunnelPrimaryDestVipArgs.builder()
            .datacenter("string")
            .id(0)
            .virtualIp("string")
            .build())
        .secondaryDestVips(TrafficForwardingGRETunnelSecondaryDestVipArgs.builder()
            .datacenter("string")
            .id(0)
            .virtualIp("string")
            .build())
        .withinCountry(false)
        .build());
    
    traffic_forwarding_gre_tunnel_resource = zia.TrafficForwardingGRETunnel("trafficForwardingGRETunnelResource",
        source_ip="string",
        comment="string",
        country_code="string",
        internal_ip_range="string",
        ip_unnumbered=False,
        primary_dest_vips=[zia.TrafficForwardingGRETunnelPrimaryDestVipArgs(
            datacenter="string",
            id=0,
            virtual_ip="string",
        )],
        secondary_dest_vips=[zia.TrafficForwardingGRETunnelSecondaryDestVipArgs(
            datacenter="string",
            id=0,
            virtual_ip="string",
        )],
        within_country=False)
    
    const trafficForwardingGRETunnelResource = new zia.TrafficForwardingGRETunnel("trafficForwardingGRETunnelResource", {
        sourceIp: "string",
        comment: "string",
        countryCode: "string",
        internalIpRange: "string",
        ipUnnumbered: false,
        primaryDestVips: [{
            datacenter: "string",
            id: 0,
            virtualIp: "string",
        }],
        secondaryDestVips: [{
            datacenter: "string",
            id: 0,
            virtualIp: "string",
        }],
        withinCountry: false,
    });
    
    type: zia:TrafficForwardingGRETunnel
    properties:
        comment: string
        countryCode: string
        internalIpRange: string
        ipUnnumbered: false
        primaryDestVips:
            - datacenter: string
              id: 0
              virtualIp: string
        secondaryDestVips:
            - datacenter: string
              id: 0
              virtualIp: string
        sourceIp: string
        withinCountry: false
    

    TrafficForwardingGRETunnel 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 TrafficForwardingGRETunnel resource accepts the following input properties:

    SourceIp string
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    Comment string
    Additional information about this GRE tunnel
    CountryCode string
    When within_country is enabled, you must set this to the country code.
    InternalIpRange string
    The start of the internal IP address in /29 CIDR range
    IpUnnumbered bool
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    PrimaryDestVips List<zscaler.PulumiPackage.Zia.Inputs.TrafficForwardingGRETunnelPrimaryDestVip>
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    SecondaryDestVips List<zscaler.PulumiPackage.Zia.Inputs.TrafficForwardingGRETunnelSecondaryDestVip>
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    WithinCountry bool
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address
    SourceIp string
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    Comment string
    Additional information about this GRE tunnel
    CountryCode string
    When within_country is enabled, you must set this to the country code.
    InternalIpRange string
    The start of the internal IP address in /29 CIDR range
    IpUnnumbered bool
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    PrimaryDestVips []TrafficForwardingGRETunnelPrimaryDestVipArgs
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    SecondaryDestVips []TrafficForwardingGRETunnelSecondaryDestVipArgs
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    WithinCountry bool
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address
    sourceIp String
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    comment String
    Additional information about this GRE tunnel
    countryCode String
    When within_country is enabled, you must set this to the country code.
    internalIpRange String
    The start of the internal IP address in /29 CIDR range
    ipUnnumbered Boolean
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    primaryDestVips List<TrafficForwardingGRETunnelPrimaryDestVip>
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    secondaryDestVips List<TrafficForwardingGRETunnelSecondaryDestVip>
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    withinCountry Boolean
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address
    sourceIp string
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    comment string
    Additional information about this GRE tunnel
    countryCode string
    When within_country is enabled, you must set this to the country code.
    internalIpRange string
    The start of the internal IP address in /29 CIDR range
    ipUnnumbered boolean
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    primaryDestVips TrafficForwardingGRETunnelPrimaryDestVip[]
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    secondaryDestVips TrafficForwardingGRETunnelSecondaryDestVip[]
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    withinCountry boolean
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address
    source_ip str
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    comment str
    Additional information about this GRE tunnel
    country_code str
    When within_country is enabled, you must set this to the country code.
    internal_ip_range str
    The start of the internal IP address in /29 CIDR range
    ip_unnumbered bool
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    primary_dest_vips Sequence[TrafficForwardingGRETunnelPrimaryDestVipArgs]
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    secondary_dest_vips Sequence[TrafficForwardingGRETunnelSecondaryDestVipArgs]
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    within_country bool
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address
    sourceIp String
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    comment String
    Additional information about this GRE tunnel
    countryCode String
    When within_country is enabled, you must set this to the country code.
    internalIpRange String
    The start of the internal IP address in /29 CIDR range
    ipUnnumbered Boolean
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    primaryDestVips List<Property Map>
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    secondaryDestVips List<Property Map>
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    withinCountry Boolean
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TrafficForwardingGRETunnel resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    TunnelId int
    The ID of the GRE tunnel.
    Id string
    The provider-assigned unique ID for this managed resource.
    TunnelId int
    The ID of the GRE tunnel.
    id String
    The provider-assigned unique ID for this managed resource.
    tunnelId Integer
    The ID of the GRE tunnel.
    id string
    The provider-assigned unique ID for this managed resource.
    tunnelId number
    The ID of the GRE tunnel.
    id str
    The provider-assigned unique ID for this managed resource.
    tunnel_id int
    The ID of the GRE tunnel.
    id String
    The provider-assigned unique ID for this managed resource.
    tunnelId Number
    The ID of the GRE tunnel.

    Look up Existing TrafficForwardingGRETunnel Resource

    Get an existing TrafficForwardingGRETunnel 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?: TrafficForwardingGRETunnelState, opts?: CustomResourceOptions): TrafficForwardingGRETunnel
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            comment: Optional[str] = None,
            country_code: Optional[str] = None,
            internal_ip_range: Optional[str] = None,
            ip_unnumbered: Optional[bool] = None,
            primary_dest_vips: Optional[Sequence[TrafficForwardingGRETunnelPrimaryDestVipArgs]] = None,
            secondary_dest_vips: Optional[Sequence[TrafficForwardingGRETunnelSecondaryDestVipArgs]] = None,
            source_ip: Optional[str] = None,
            tunnel_id: Optional[int] = None,
            within_country: Optional[bool] = None) -> TrafficForwardingGRETunnel
    func GetTrafficForwardingGRETunnel(ctx *Context, name string, id IDInput, state *TrafficForwardingGRETunnelState, opts ...ResourceOption) (*TrafficForwardingGRETunnel, error)
    public static TrafficForwardingGRETunnel Get(string name, Input<string> id, TrafficForwardingGRETunnelState? state, CustomResourceOptions? opts = null)
    public static TrafficForwardingGRETunnel get(String name, Output<String> id, TrafficForwardingGRETunnelState 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.
    The following state arguments are supported:
    Comment string
    Additional information about this GRE tunnel
    CountryCode string
    When within_country is enabled, you must set this to the country code.
    InternalIpRange string
    The start of the internal IP address in /29 CIDR range
    IpUnnumbered bool
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    PrimaryDestVips List<zscaler.PulumiPackage.Zia.Inputs.TrafficForwardingGRETunnelPrimaryDestVip>
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    SecondaryDestVips List<zscaler.PulumiPackage.Zia.Inputs.TrafficForwardingGRETunnelSecondaryDestVip>
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    SourceIp string
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    TunnelId int
    The ID of the GRE tunnel.
    WithinCountry bool
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address
    Comment string
    Additional information about this GRE tunnel
    CountryCode string
    When within_country is enabled, you must set this to the country code.
    InternalIpRange string
    The start of the internal IP address in /29 CIDR range
    IpUnnumbered bool
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    PrimaryDestVips []TrafficForwardingGRETunnelPrimaryDestVipArgs
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    SecondaryDestVips []TrafficForwardingGRETunnelSecondaryDestVipArgs
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    SourceIp string
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    TunnelId int
    The ID of the GRE tunnel.
    WithinCountry bool
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address
    comment String
    Additional information about this GRE tunnel
    countryCode String
    When within_country is enabled, you must set this to the country code.
    internalIpRange String
    The start of the internal IP address in /29 CIDR range
    ipUnnumbered Boolean
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    primaryDestVips List<TrafficForwardingGRETunnelPrimaryDestVip>
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    secondaryDestVips List<TrafficForwardingGRETunnelSecondaryDestVip>
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    sourceIp String
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    tunnelId Integer
    The ID of the GRE tunnel.
    withinCountry Boolean
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address
    comment string
    Additional information about this GRE tunnel
    countryCode string
    When within_country is enabled, you must set this to the country code.
    internalIpRange string
    The start of the internal IP address in /29 CIDR range
    ipUnnumbered boolean
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    primaryDestVips TrafficForwardingGRETunnelPrimaryDestVip[]
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    secondaryDestVips TrafficForwardingGRETunnelSecondaryDestVip[]
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    sourceIp string
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    tunnelId number
    The ID of the GRE tunnel.
    withinCountry boolean
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address
    comment str
    Additional information about this GRE tunnel
    country_code str
    When within_country is enabled, you must set this to the country code.
    internal_ip_range str
    The start of the internal IP address in /29 CIDR range
    ip_unnumbered bool
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    primary_dest_vips Sequence[TrafficForwardingGRETunnelPrimaryDestVipArgs]
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    secondary_dest_vips Sequence[TrafficForwardingGRETunnelSecondaryDestVipArgs]
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    source_ip str
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    tunnel_id int
    The ID of the GRE tunnel.
    within_country bool
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address
    comment String
    Additional information about this GRE tunnel
    countryCode String
    When within_country is enabled, you must set this to the country code.
    internalIpRange String
    The start of the internal IP address in /29 CIDR range
    ipUnnumbered Boolean
    This is required to support the automated SD-WAN provisioning of GRE tunnels, when set to true gre_tun_ip and gre_tun_id are set to null
    primaryDestVips List<Property Map>
    The primary destination data center and virtual IP address (VIP) of the GRE tunnel
    secondaryDestVips List<Property Map>
    The secondary destination data center and virtual IP address (VIP) of the GRE tunnel
    sourceIp String
    The source IP address of the GRE tunnel. This is typically a static IP address in the organization or SD-WAN.
    tunnelId Number
    The ID of the GRE tunnel.
    withinCountry Boolean
    Restrict the data center virtual IP addresses (VIPs) only to those within the same country as the source IP address

    Supporting Types

    TrafficForwardingGRETunnelPrimaryDestVip, TrafficForwardingGRETunnelPrimaryDestVipArgs

    Datacenter string
    Data center information
    Id int
    GRE cluster virtual IP ID
    VirtualIp string
    GRE cluster virtual IP address (VIP)
    Datacenter string
    Data center information
    Id int
    GRE cluster virtual IP ID
    VirtualIp string
    GRE cluster virtual IP address (VIP)
    datacenter String
    Data center information
    id Integer
    GRE cluster virtual IP ID
    virtualIp String
    GRE cluster virtual IP address (VIP)
    datacenter string
    Data center information
    id number
    GRE cluster virtual IP ID
    virtualIp string
    GRE cluster virtual IP address (VIP)
    datacenter str
    Data center information
    id int
    GRE cluster virtual IP ID
    virtual_ip str
    GRE cluster virtual IP address (VIP)
    datacenter String
    Data center information
    id Number
    GRE cluster virtual IP ID
    virtualIp String
    GRE cluster virtual IP address (VIP)

    TrafficForwardingGRETunnelSecondaryDestVip, TrafficForwardingGRETunnelSecondaryDestVipArgs

    Datacenter string
    Data center information
    Id int
    GRE cluster virtual IP ID
    VirtualIp string
    GRE cluster virtual IP address (VIP)
    Datacenter string
    Data center information
    Id int
    GRE cluster virtual IP ID
    VirtualIp string
    GRE cluster virtual IP address (VIP)
    datacenter String
    Data center information
    id Integer
    GRE cluster virtual IP ID
    virtualIp String
    GRE cluster virtual IP address (VIP)
    datacenter string
    Data center information
    id number
    GRE cluster virtual IP ID
    virtualIp string
    GRE cluster virtual IP address (VIP)
    datacenter str
    Data center information
    id int
    GRE cluster virtual IP ID
    virtual_ip str
    GRE cluster virtual IP address (VIP)
    datacenter String
    Data center information
    id Number
    GRE cluster virtual IP ID
    virtualIp String
    GRE cluster virtual IP address (VIP)

    Package Details

    Repository
    zia zscaler/pulumi-zia
    License
    MIT
    Notes
    This Pulumi package is based on the zia Terraform Provider.
    zia logo
    Zscaler Internet Access v0.0.7 published on Tuesday, Jul 30, 2024 by Zscaler