1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectVpnmgrNode
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectVpnmgrNode

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    VPN node for VPN Manager. Must specify vpntable and scope member.

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • ip_range: fortimanager.ObjectVpnmgrNodeIprange
    • ipv4_exclude_range: fortimanager.ObjectVpnmgrNodeIpv4excluderange
    • protected_subnet: fortimanager.ObjectVpnmgrNodeProtectedSubnet
    • summary_addr: fortimanager.ObjectVpnmgrNodeSummaryAddr

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectVpnmgrNode("trname", {
        addRoute: "enable",
        assignIp: "enable",
        assignIpFrom: "dhcp",
        authpasswds: ["fortinet"],
        authusr: "admin",
        autoConfiguration: "enable",
        automaticRouting: "disable",
        defaultGateway: "192.168.1.1",
        dhcpServer: "enable",
        dnsMode: "auto",
        dnsService: "default",
        domain: "8.8.8.8",
        exchangeInterfaceIp: "disable",
        extgwP2PerNet: "disable",
        fosid: 1,
        ipsecLeaseHold: 60,
        ipv4DnsServer1: "0.0.0.0",
        ipv4DnsServer2: "0.0.0.0",
        ipv4DnsServer3: "0.0.0.0",
        ipv4EndIp: "0.0.0.0",
        ipv4Netmask: "255.255.255.255",
        ipv4StartIp: "0.0.0.0",
        ipv4WinsServer1: "0.0.0.0",
        ipv4WinsServer2: "0.0.0.0",
        localGw: "0.0.0.0",
        modeCfg: "disable",
        netDevice: "disable",
        peertype: "peer",
        role: "hub",
        tunnelSearch: "selectors",
        unitySupport: "enable",
        xauthtype: "disable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectVpnmgrNode("trname",
        add_route="enable",
        assign_ip="enable",
        assign_ip_from="dhcp",
        authpasswds=["fortinet"],
        authusr="admin",
        auto_configuration="enable",
        automatic_routing="disable",
        default_gateway="192.168.1.1",
        dhcp_server="enable",
        dns_mode="auto",
        dns_service="default",
        domain="8.8.8.8",
        exchange_interface_ip="disable",
        extgw_p2_per_net="disable",
        fosid=1,
        ipsec_lease_hold=60,
        ipv4_dns_server1="0.0.0.0",
        ipv4_dns_server2="0.0.0.0",
        ipv4_dns_server3="0.0.0.0",
        ipv4_end_ip="0.0.0.0",
        ipv4_netmask="255.255.255.255",
        ipv4_start_ip="0.0.0.0",
        ipv4_wins_server1="0.0.0.0",
        ipv4_wins_server2="0.0.0.0",
        local_gw="0.0.0.0",
        mode_cfg="disable",
        net_device="disable",
        peertype="peer",
        role="hub",
        tunnel_search="selectors",
        unity_support="enable",
        xauthtype="disable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewObjectVpnmgrNode(ctx, "trname", &fortimanager.ObjectVpnmgrNodeArgs{
    			AddRoute:     pulumi.String("enable"),
    			AssignIp:     pulumi.String("enable"),
    			AssignIpFrom: pulumi.String("dhcp"),
    			Authpasswds: pulumi.StringArray{
    				pulumi.String("fortinet"),
    			},
    			Authusr:             pulumi.String("admin"),
    			AutoConfiguration:   pulumi.String("enable"),
    			AutomaticRouting:    pulumi.String("disable"),
    			DefaultGateway:      pulumi.String("192.168.1.1"),
    			DhcpServer:          pulumi.String("enable"),
    			DnsMode:             pulumi.String("auto"),
    			DnsService:          pulumi.String("default"),
    			Domain:              pulumi.String("8.8.8.8"),
    			ExchangeInterfaceIp: pulumi.String("disable"),
    			ExtgwP2PerNet:       pulumi.String("disable"),
    			Fosid:               pulumi.Float64(1),
    			IpsecLeaseHold:      pulumi.Float64(60),
    			Ipv4DnsServer1:      pulumi.String("0.0.0.0"),
    			Ipv4DnsServer2:      pulumi.String("0.0.0.0"),
    			Ipv4DnsServer3:      pulumi.String("0.0.0.0"),
    			Ipv4EndIp:           pulumi.String("0.0.0.0"),
    			Ipv4Netmask:         pulumi.String("255.255.255.255"),
    			Ipv4StartIp:         pulumi.String("0.0.0.0"),
    			Ipv4WinsServer1:     pulumi.String("0.0.0.0"),
    			Ipv4WinsServer2:     pulumi.String("0.0.0.0"),
    			LocalGw:             pulumi.String("0.0.0.0"),
    			ModeCfg:             pulumi.String("disable"),
    			NetDevice:           pulumi.String("disable"),
    			Peertype:            pulumi.String("peer"),
    			Role:                pulumi.String("hub"),
    			TunnelSearch:        pulumi.String("selectors"),
    			UnitySupport:        pulumi.String("enable"),
    			Xauthtype:           pulumi.String("disable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.ObjectVpnmgrNode("trname", new()
        {
            AddRoute = "enable",
            AssignIp = "enable",
            AssignIpFrom = "dhcp",
            Authpasswds = new[]
            {
                "fortinet",
            },
            Authusr = "admin",
            AutoConfiguration = "enable",
            AutomaticRouting = "disable",
            DefaultGateway = "192.168.1.1",
            DhcpServer = "enable",
            DnsMode = "auto",
            DnsService = "default",
            Domain = "8.8.8.8",
            ExchangeInterfaceIp = "disable",
            ExtgwP2PerNet = "disable",
            Fosid = 1,
            IpsecLeaseHold = 60,
            Ipv4DnsServer1 = "0.0.0.0",
            Ipv4DnsServer2 = "0.0.0.0",
            Ipv4DnsServer3 = "0.0.0.0",
            Ipv4EndIp = "0.0.0.0",
            Ipv4Netmask = "255.255.255.255",
            Ipv4StartIp = "0.0.0.0",
            Ipv4WinsServer1 = "0.0.0.0",
            Ipv4WinsServer2 = "0.0.0.0",
            LocalGw = "0.0.0.0",
            ModeCfg = "disable",
            NetDevice = "disable",
            Peertype = "peer",
            Role = "hub",
            TunnelSearch = "selectors",
            UnitySupport = "enable",
            Xauthtype = "disable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectVpnmgrNode;
    import com.pulumi.fortimanager.ObjectVpnmgrNodeArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trname = new ObjectVpnmgrNode("trname", ObjectVpnmgrNodeArgs.builder()
                .addRoute("enable")
                .assignIp("enable")
                .assignIpFrom("dhcp")
                .authpasswds("fortinet")
                .authusr("admin")
                .autoConfiguration("enable")
                .automaticRouting("disable")
                .defaultGateway("192.168.1.1")
                .dhcpServer("enable")
                .dnsMode("auto")
                .dnsService("default")
                .domain("8.8.8.8")
                .exchangeInterfaceIp("disable")
                .extgwP2PerNet("disable")
                .fosid(1)
                .ipsecLeaseHold(60)
                .ipv4DnsServer1("0.0.0.0")
                .ipv4DnsServer2("0.0.0.0")
                .ipv4DnsServer3("0.0.0.0")
                .ipv4EndIp("0.0.0.0")
                .ipv4Netmask("255.255.255.255")
                .ipv4StartIp("0.0.0.0")
                .ipv4WinsServer1("0.0.0.0")
                .ipv4WinsServer2("0.0.0.0")
                .localGw("0.0.0.0")
                .modeCfg("disable")
                .netDevice("disable")
                .peertype("peer")
                .role("hub")
                .tunnelSearch("selectors")
                .unitySupport("enable")
                .xauthtype("disable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectVpnmgrNode
        properties:
          addRoute: enable
          assignIp: enable
          assignIpFrom: dhcp
          authpasswds:
            - fortinet
          authusr: admin
          autoConfiguration: enable
          automaticRouting: disable
          defaultGateway: 192.168.1.1
          dhcpServer: enable
          dnsMode: auto
          dnsService: default
          domain: 8.8.8.8
          exchangeInterfaceIp: disable
          extgwP2PerNet: disable
          fosid: 1
          ipsecLeaseHold: 60
          ipv4DnsServer1: 0.0.0.0
          ipv4DnsServer2: 0.0.0.0
          ipv4DnsServer3: 0.0.0.0
          ipv4EndIp: 0.0.0.0
          ipv4Netmask: 255.255.255.255
          ipv4StartIp: 0.0.0.0
          ipv4WinsServer1: 0.0.0.0
          ipv4WinsServer2: 0.0.0.0
          localGw: 0.0.0.0
          modeCfg: disable
          netDevice: disable
          peertype: peer
          role: hub
          tunnelSearch: selectors
          unitySupport: enable
          xauthtype: disable
    

    Create ObjectVpnmgrNode Resource

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

    Constructor syntax

    new ObjectVpnmgrNode(name: string, args?: ObjectVpnmgrNodeArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectVpnmgrNode(resource_name: str,
                         args: Optional[ObjectVpnmgrNodeArgs] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectVpnmgrNode(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         add_route: Optional[str] = None,
                         adom: Optional[str] = None,
                         assign_ip: Optional[str] = None,
                         assign_ip_from: Optional[str] = None,
                         authpasswds: Optional[Sequence[str]] = None,
                         authusr: Optional[str] = None,
                         authusrgrp: Optional[str] = None,
                         auto_configuration: Optional[str] = None,
                         auto_discovery_receiver: Optional[str] = None,
                         auto_discovery_sender: Optional[str] = None,
                         automatic_routing: Optional[str] = None,
                         banner: Optional[str] = None,
                         default_gateway: Optional[str] = None,
                         dhcp_ra_giaddr: Optional[str] = None,
                         dhcp_server: Optional[str] = None,
                         dns_mode: Optional[str] = None,
                         dns_service: Optional[str] = None,
                         domain: Optional[str] = None,
                         dynamic_sort_subtable: Optional[str] = None,
                         encapsulation: Optional[str] = None,
                         exchange_interface_ip: Optional[str] = None,
                         extgw: Optional[str] = None,
                         extgw_hubip: Optional[str] = None,
                         extgw_p2_per_net: Optional[str] = None,
                         extgwip: Optional[str] = None,
                         fosid: Optional[float] = None,
                         hub_ifaces: Optional[Sequence[str]] = None,
                         hub_public_ip: Optional[str] = None,
                         ifaces: Optional[Sequence[str]] = None,
                         ip_ranges: Optional[Sequence[ObjectVpnmgrNodeIpRangeArgs]] = None,
                         ipsec_lease_hold: Optional[float] = None,
                         ipv4_dns_server1: Optional[str] = None,
                         ipv4_dns_server2: Optional[str] = None,
                         ipv4_dns_server3: Optional[str] = None,
                         ipv4_end_ip: Optional[str] = None,
                         ipv4_exclude_ranges: Optional[Sequence[ObjectVpnmgrNodeIpv4ExcludeRangeArgs]] = None,
                         ipv4_name: Optional[str] = None,
                         ipv4_netmask: Optional[str] = None,
                         ipv4_split_exclude: Optional[str] = None,
                         ipv4_split_include: Optional[str] = None,
                         ipv4_start_ip: Optional[str] = None,
                         ipv4_wins_server1: Optional[str] = None,
                         ipv4_wins_server2: Optional[str] = None,
                         l2tp: Optional[str] = None,
                         local_gw: Optional[str] = None,
                         localid: Optional[str] = None,
                         mode_cfg: Optional[str] = None,
                         mode_cfg_ip_version: Optional[str] = None,
                         net_device: Optional[str] = None,
                         network_id: Optional[float] = None,
                         network_overlay: Optional[str] = None,
                         object_vpnmgr_node_id: Optional[str] = None,
                         peergrp: Optional[str] = None,
                         peerid: Optional[str] = None,
                         peers: Optional[Sequence[str]] = None,
                         peertype: Optional[str] = None,
                         protected_subnets: Optional[Sequence[ObjectVpnmgrNodeProtectedSubnetArgs]] = None,
                         protocol: Optional[float] = None,
                         public_ip: Optional[str] = None,
                         role: Optional[str] = None,
                         route_overlap: Optional[str] = None,
                         scopemembers: Optional[Sequence[ObjectVpnmgrNodeScopememberArgs]] = None,
                         scopetype: Optional[str] = None,
                         spoke_zones: Optional[Sequence[str]] = None,
                         summary_addrs: Optional[Sequence[ObjectVpnmgrNodeSummaryAddrArgs]] = None,
                         tunnel_search: Optional[str] = None,
                         unity_support: Optional[str] = None,
                         usrgrp: Optional[str] = None,
                         vpn_interface_priority: Optional[float] = None,
                         vpn_zones: Optional[Sequence[str]] = None,
                         vpntables: Optional[Sequence[str]] = None,
                         xauthtype: Optional[str] = None)
    func NewObjectVpnmgrNode(ctx *Context, name string, args *ObjectVpnmgrNodeArgs, opts ...ResourceOption) (*ObjectVpnmgrNode, error)
    public ObjectVpnmgrNode(string name, ObjectVpnmgrNodeArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectVpnmgrNode(String name, ObjectVpnmgrNodeArgs args)
    public ObjectVpnmgrNode(String name, ObjectVpnmgrNodeArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectVpnmgrNode
    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 ObjectVpnmgrNodeArgs
    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 ObjectVpnmgrNodeArgs
    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 ObjectVpnmgrNodeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectVpnmgrNodeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectVpnmgrNodeArgs
    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 objectVpnmgrNodeResource = new Fortimanager.ObjectVpnmgrNode("objectVpnmgrNodeResource", new()
    {
        AddRoute = "string",
        Adom = "string",
        AssignIp = "string",
        AssignIpFrom = "string",
        Authpasswds = new[]
        {
            "string",
        },
        Authusr = "string",
        Authusrgrp = "string",
        AutoConfiguration = "string",
        AutoDiscoveryReceiver = "string",
        AutoDiscoverySender = "string",
        AutomaticRouting = "string",
        Banner = "string",
        DefaultGateway = "string",
        DhcpRaGiaddr = "string",
        DhcpServer = "string",
        DnsMode = "string",
        DnsService = "string",
        Domain = "string",
        DynamicSortSubtable = "string",
        Encapsulation = "string",
        ExchangeInterfaceIp = "string",
        Extgw = "string",
        ExtgwHubip = "string",
        ExtgwP2PerNet = "string",
        Extgwip = "string",
        Fosid = 0,
        HubIfaces = new[]
        {
            "string",
        },
        HubPublicIp = "string",
        Ifaces = new[]
        {
            "string",
        },
        IpRanges = new[]
        {
            new Fortimanager.Inputs.ObjectVpnmgrNodeIpRangeArgs
            {
                EndIp = "string",
                Id = 0,
                StartIp = "string",
            },
        },
        IpsecLeaseHold = 0,
        Ipv4DnsServer1 = "string",
        Ipv4DnsServer2 = "string",
        Ipv4DnsServer3 = "string",
        Ipv4EndIp = "string",
        Ipv4ExcludeRanges = new[]
        {
            new Fortimanager.Inputs.ObjectVpnmgrNodeIpv4ExcludeRangeArgs
            {
                EndIp = "string",
                Id = 0,
                StartIp = "string",
            },
        },
        Ipv4Name = "string",
        Ipv4Netmask = "string",
        Ipv4SplitExclude = "string",
        Ipv4SplitInclude = "string",
        Ipv4StartIp = "string",
        Ipv4WinsServer1 = "string",
        Ipv4WinsServer2 = "string",
        L2tp = "string",
        LocalGw = "string",
        Localid = "string",
        ModeCfg = "string",
        ModeCfgIpVersion = "string",
        NetDevice = "string",
        NetworkId = 0,
        NetworkOverlay = "string",
        ObjectVpnmgrNodeId = "string",
        Peergrp = "string",
        Peerid = "string",
        Peers = new[]
        {
            "string",
        },
        Peertype = "string",
        ProtectedSubnets = new[]
        {
            new Fortimanager.Inputs.ObjectVpnmgrNodeProtectedSubnetArgs
            {
                Addr = "string",
                Seq = 0,
            },
        },
        Protocol = 0,
        PublicIp = "string",
        Role = "string",
        RouteOverlap = "string",
        Scopemembers = new[]
        {
            new Fortimanager.Inputs.ObjectVpnmgrNodeScopememberArgs
            {
                Name = "string",
                Vdom = "string",
            },
        },
        Scopetype = "string",
        SpokeZones = new[]
        {
            "string",
        },
        SummaryAddrs = new[]
        {
            new Fortimanager.Inputs.ObjectVpnmgrNodeSummaryAddrArgs
            {
                Addr = "string",
                Priority = 0,
                Seq = 0,
            },
        },
        TunnelSearch = "string",
        UnitySupport = "string",
        Usrgrp = "string",
        VpnInterfacePriority = 0,
        VpnZones = new[]
        {
            "string",
        },
        Vpntables = new[]
        {
            "string",
        },
        Xauthtype = "string",
    });
    
    example, err := fortimanager.NewObjectVpnmgrNode(ctx, "objectVpnmgrNodeResource", &fortimanager.ObjectVpnmgrNodeArgs{
    AddRoute: pulumi.String("string"),
    Adom: pulumi.String("string"),
    AssignIp: pulumi.String("string"),
    AssignIpFrom: pulumi.String("string"),
    Authpasswds: pulumi.StringArray{
    pulumi.String("string"),
    },
    Authusr: pulumi.String("string"),
    Authusrgrp: pulumi.String("string"),
    AutoConfiguration: pulumi.String("string"),
    AutoDiscoveryReceiver: pulumi.String("string"),
    AutoDiscoverySender: pulumi.String("string"),
    AutomaticRouting: pulumi.String("string"),
    Banner: pulumi.String("string"),
    DefaultGateway: pulumi.String("string"),
    DhcpRaGiaddr: pulumi.String("string"),
    DhcpServer: pulumi.String("string"),
    DnsMode: pulumi.String("string"),
    DnsService: pulumi.String("string"),
    Domain: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Encapsulation: pulumi.String("string"),
    ExchangeInterfaceIp: pulumi.String("string"),
    Extgw: pulumi.String("string"),
    ExtgwHubip: pulumi.String("string"),
    ExtgwP2PerNet: pulumi.String("string"),
    Extgwip: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    HubIfaces: pulumi.StringArray{
    pulumi.String("string"),
    },
    HubPublicIp: pulumi.String("string"),
    Ifaces: pulumi.StringArray{
    pulumi.String("string"),
    },
    IpRanges: .ObjectVpnmgrNodeIpRangeTypeArray{
    &.ObjectVpnmgrNodeIpRangeTypeArgs{
    EndIp: pulumi.String("string"),
    Id: pulumi.Float64(0),
    StartIp: pulumi.String("string"),
    },
    },
    IpsecLeaseHold: pulumi.Float64(0),
    Ipv4DnsServer1: pulumi.String("string"),
    Ipv4DnsServer2: pulumi.String("string"),
    Ipv4DnsServer3: pulumi.String("string"),
    Ipv4EndIp: pulumi.String("string"),
    Ipv4ExcludeRanges: .ObjectVpnmgrNodeIpv4ExcludeRangeTypeArray{
    &.ObjectVpnmgrNodeIpv4ExcludeRangeTypeArgs{
    EndIp: pulumi.String("string"),
    Id: pulumi.Float64(0),
    StartIp: pulumi.String("string"),
    },
    },
    Ipv4Name: pulumi.String("string"),
    Ipv4Netmask: pulumi.String("string"),
    Ipv4SplitExclude: pulumi.String("string"),
    Ipv4SplitInclude: pulumi.String("string"),
    Ipv4StartIp: pulumi.String("string"),
    Ipv4WinsServer1: pulumi.String("string"),
    Ipv4WinsServer2: pulumi.String("string"),
    L2tp: pulumi.String("string"),
    LocalGw: pulumi.String("string"),
    Localid: pulumi.String("string"),
    ModeCfg: pulumi.String("string"),
    ModeCfgIpVersion: pulumi.String("string"),
    NetDevice: pulumi.String("string"),
    NetworkId: pulumi.Float64(0),
    NetworkOverlay: pulumi.String("string"),
    ObjectVpnmgrNodeId: pulumi.String("string"),
    Peergrp: pulumi.String("string"),
    Peerid: pulumi.String("string"),
    Peers: pulumi.StringArray{
    pulumi.String("string"),
    },
    Peertype: pulumi.String("string"),
    ProtectedSubnets: .ObjectVpnmgrNodeProtectedSubnetTypeArray{
    &.ObjectVpnmgrNodeProtectedSubnetTypeArgs{
    Addr: pulumi.String("string"),
    Seq: pulumi.Float64(0),
    },
    },
    Protocol: pulumi.Float64(0),
    PublicIp: pulumi.String("string"),
    Role: pulumi.String("string"),
    RouteOverlap: pulumi.String("string"),
    Scopemembers: .ObjectVpnmgrNodeScopememberArray{
    &.ObjectVpnmgrNodeScopememberArgs{
    Name: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    },
    },
    Scopetype: pulumi.String("string"),
    SpokeZones: pulumi.StringArray{
    pulumi.String("string"),
    },
    SummaryAddrs: .ObjectVpnmgrNodeSummaryAddrTypeArray{
    &.ObjectVpnmgrNodeSummaryAddrTypeArgs{
    Addr: pulumi.String("string"),
    Priority: pulumi.Float64(0),
    Seq: pulumi.Float64(0),
    },
    },
    TunnelSearch: pulumi.String("string"),
    UnitySupport: pulumi.String("string"),
    Usrgrp: pulumi.String("string"),
    VpnInterfacePriority: pulumi.Float64(0),
    VpnZones: pulumi.StringArray{
    pulumi.String("string"),
    },
    Vpntables: pulumi.StringArray{
    pulumi.String("string"),
    },
    Xauthtype: pulumi.String("string"),
    })
    
    var objectVpnmgrNodeResource = new ObjectVpnmgrNode("objectVpnmgrNodeResource", ObjectVpnmgrNodeArgs.builder()
        .addRoute("string")
        .adom("string")
        .assignIp("string")
        .assignIpFrom("string")
        .authpasswds("string")
        .authusr("string")
        .authusrgrp("string")
        .autoConfiguration("string")
        .autoDiscoveryReceiver("string")
        .autoDiscoverySender("string")
        .automaticRouting("string")
        .banner("string")
        .defaultGateway("string")
        .dhcpRaGiaddr("string")
        .dhcpServer("string")
        .dnsMode("string")
        .dnsService("string")
        .domain("string")
        .dynamicSortSubtable("string")
        .encapsulation("string")
        .exchangeInterfaceIp("string")
        .extgw("string")
        .extgwHubip("string")
        .extgwP2PerNet("string")
        .extgwip("string")
        .fosid(0)
        .hubIfaces("string")
        .hubPublicIp("string")
        .ifaces("string")
        .ipRanges(ObjectVpnmgrNodeIpRangeArgs.builder()
            .endIp("string")
            .id(0)
            .startIp("string")
            .build())
        .ipsecLeaseHold(0)
        .ipv4DnsServer1("string")
        .ipv4DnsServer2("string")
        .ipv4DnsServer3("string")
        .ipv4EndIp("string")
        .ipv4ExcludeRanges(ObjectVpnmgrNodeIpv4ExcludeRangeArgs.builder()
            .endIp("string")
            .id(0)
            .startIp("string")
            .build())
        .ipv4Name("string")
        .ipv4Netmask("string")
        .ipv4SplitExclude("string")
        .ipv4SplitInclude("string")
        .ipv4StartIp("string")
        .ipv4WinsServer1("string")
        .ipv4WinsServer2("string")
        .l2tp("string")
        .localGw("string")
        .localid("string")
        .modeCfg("string")
        .modeCfgIpVersion("string")
        .netDevice("string")
        .networkId(0)
        .networkOverlay("string")
        .objectVpnmgrNodeId("string")
        .peergrp("string")
        .peerid("string")
        .peers("string")
        .peertype("string")
        .protectedSubnets(ObjectVpnmgrNodeProtectedSubnetArgs.builder()
            .addr("string")
            .seq(0)
            .build())
        .protocol(0)
        .publicIp("string")
        .role("string")
        .routeOverlap("string")
        .scopemembers(ObjectVpnmgrNodeScopememberArgs.builder()
            .name("string")
            .vdom("string")
            .build())
        .scopetype("string")
        .spokeZones("string")
        .summaryAddrs(ObjectVpnmgrNodeSummaryAddrArgs.builder()
            .addr("string")
            .priority(0)
            .seq(0)
            .build())
        .tunnelSearch("string")
        .unitySupport("string")
        .usrgrp("string")
        .vpnInterfacePriority(0)
        .vpnZones("string")
        .vpntables("string")
        .xauthtype("string")
        .build());
    
    object_vpnmgr_node_resource = fortimanager.ObjectVpnmgrNode("objectVpnmgrNodeResource",
        add_route="string",
        adom="string",
        assign_ip="string",
        assign_ip_from="string",
        authpasswds=["string"],
        authusr="string",
        authusrgrp="string",
        auto_configuration="string",
        auto_discovery_receiver="string",
        auto_discovery_sender="string",
        automatic_routing="string",
        banner="string",
        default_gateway="string",
        dhcp_ra_giaddr="string",
        dhcp_server="string",
        dns_mode="string",
        dns_service="string",
        domain="string",
        dynamic_sort_subtable="string",
        encapsulation="string",
        exchange_interface_ip="string",
        extgw="string",
        extgw_hubip="string",
        extgw_p2_per_net="string",
        extgwip="string",
        fosid=0,
        hub_ifaces=["string"],
        hub_public_ip="string",
        ifaces=["string"],
        ip_ranges=[{
            "end_ip": "string",
            "id": 0,
            "start_ip": "string",
        }],
        ipsec_lease_hold=0,
        ipv4_dns_server1="string",
        ipv4_dns_server2="string",
        ipv4_dns_server3="string",
        ipv4_end_ip="string",
        ipv4_exclude_ranges=[{
            "end_ip": "string",
            "id": 0,
            "start_ip": "string",
        }],
        ipv4_name="string",
        ipv4_netmask="string",
        ipv4_split_exclude="string",
        ipv4_split_include="string",
        ipv4_start_ip="string",
        ipv4_wins_server1="string",
        ipv4_wins_server2="string",
        l2tp="string",
        local_gw="string",
        localid="string",
        mode_cfg="string",
        mode_cfg_ip_version="string",
        net_device="string",
        network_id=0,
        network_overlay="string",
        object_vpnmgr_node_id="string",
        peergrp="string",
        peerid="string",
        peers=["string"],
        peertype="string",
        protected_subnets=[{
            "addr": "string",
            "seq": 0,
        }],
        protocol=0,
        public_ip="string",
        role="string",
        route_overlap="string",
        scopemembers=[{
            "name": "string",
            "vdom": "string",
        }],
        scopetype="string",
        spoke_zones=["string"],
        summary_addrs=[{
            "addr": "string",
            "priority": 0,
            "seq": 0,
        }],
        tunnel_search="string",
        unity_support="string",
        usrgrp="string",
        vpn_interface_priority=0,
        vpn_zones=["string"],
        vpntables=["string"],
        xauthtype="string")
    
    const objectVpnmgrNodeResource = new fortimanager.ObjectVpnmgrNode("objectVpnmgrNodeResource", {
        addRoute: "string",
        adom: "string",
        assignIp: "string",
        assignIpFrom: "string",
        authpasswds: ["string"],
        authusr: "string",
        authusrgrp: "string",
        autoConfiguration: "string",
        autoDiscoveryReceiver: "string",
        autoDiscoverySender: "string",
        automaticRouting: "string",
        banner: "string",
        defaultGateway: "string",
        dhcpRaGiaddr: "string",
        dhcpServer: "string",
        dnsMode: "string",
        dnsService: "string",
        domain: "string",
        dynamicSortSubtable: "string",
        encapsulation: "string",
        exchangeInterfaceIp: "string",
        extgw: "string",
        extgwHubip: "string",
        extgwP2PerNet: "string",
        extgwip: "string",
        fosid: 0,
        hubIfaces: ["string"],
        hubPublicIp: "string",
        ifaces: ["string"],
        ipRanges: [{
            endIp: "string",
            id: 0,
            startIp: "string",
        }],
        ipsecLeaseHold: 0,
        ipv4DnsServer1: "string",
        ipv4DnsServer2: "string",
        ipv4DnsServer3: "string",
        ipv4EndIp: "string",
        ipv4ExcludeRanges: [{
            endIp: "string",
            id: 0,
            startIp: "string",
        }],
        ipv4Name: "string",
        ipv4Netmask: "string",
        ipv4SplitExclude: "string",
        ipv4SplitInclude: "string",
        ipv4StartIp: "string",
        ipv4WinsServer1: "string",
        ipv4WinsServer2: "string",
        l2tp: "string",
        localGw: "string",
        localid: "string",
        modeCfg: "string",
        modeCfgIpVersion: "string",
        netDevice: "string",
        networkId: 0,
        networkOverlay: "string",
        objectVpnmgrNodeId: "string",
        peergrp: "string",
        peerid: "string",
        peers: ["string"],
        peertype: "string",
        protectedSubnets: [{
            addr: "string",
            seq: 0,
        }],
        protocol: 0,
        publicIp: "string",
        role: "string",
        routeOverlap: "string",
        scopemembers: [{
            name: "string",
            vdom: "string",
        }],
        scopetype: "string",
        spokeZones: ["string"],
        summaryAddrs: [{
            addr: "string",
            priority: 0,
            seq: 0,
        }],
        tunnelSearch: "string",
        unitySupport: "string",
        usrgrp: "string",
        vpnInterfacePriority: 0,
        vpnZones: ["string"],
        vpntables: ["string"],
        xauthtype: "string",
    });
    
    type: fortimanager:ObjectVpnmgrNode
    properties:
        addRoute: string
        adom: string
        assignIp: string
        assignIpFrom: string
        authpasswds:
            - string
        authusr: string
        authusrgrp: string
        autoConfiguration: string
        autoDiscoveryReceiver: string
        autoDiscoverySender: string
        automaticRouting: string
        banner: string
        defaultGateway: string
        dhcpRaGiaddr: string
        dhcpServer: string
        dnsMode: string
        dnsService: string
        domain: string
        dynamicSortSubtable: string
        encapsulation: string
        exchangeInterfaceIp: string
        extgw: string
        extgwHubip: string
        extgwP2PerNet: string
        extgwip: string
        fosid: 0
        hubIfaces:
            - string
        hubPublicIp: string
        ifaces:
            - string
        ipRanges:
            - endIp: string
              id: 0
              startIp: string
        ipsecLeaseHold: 0
        ipv4DnsServer1: string
        ipv4DnsServer2: string
        ipv4DnsServer3: string
        ipv4EndIp: string
        ipv4ExcludeRanges:
            - endIp: string
              id: 0
              startIp: string
        ipv4Name: string
        ipv4Netmask: string
        ipv4SplitExclude: string
        ipv4SplitInclude: string
        ipv4StartIp: string
        ipv4WinsServer1: string
        ipv4WinsServer2: string
        l2tp: string
        localGw: string
        localid: string
        modeCfg: string
        modeCfgIpVersion: string
        netDevice: string
        networkId: 0
        networkOverlay: string
        objectVpnmgrNodeId: string
        peergrp: string
        peerid: string
        peers:
            - string
        peertype: string
        protectedSubnets:
            - addr: string
              seq: 0
        protocol: 0
        publicIp: string
        role: string
        routeOverlap: string
        scopemembers:
            - name: string
              vdom: string
        scopetype: string
        spokeZones:
            - string
        summaryAddrs:
            - addr: string
              priority: 0
              seq: 0
        tunnelSearch: string
        unitySupport: string
        usrgrp: string
        vpnInterfacePriority: 0
        vpnZones:
            - string
        vpntables:
            - string
        xauthtype: string
    

    ObjectVpnmgrNode Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ObjectVpnmgrNode resource accepts the following input properties:

    AddRoute string
    Add-Route. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AssignIp string
    Assign-Ip. Valid values: disable, enable.
    AssignIpFrom string
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    Authpasswds List<string>
    Authpasswd.
    Authusr string
    Authusr.
    Authusrgrp string
    Authusrgrp.
    AutoConfiguration string
    Auto-Configuration. Valid values: disable, enable.
    AutoDiscoveryReceiver string
    Auto-Discovery-Receiver. Valid values: disable, enable.
    AutoDiscoverySender string
    Auto-Discovery-Sender. Valid values: disable, enable.
    AutomaticRouting string
    Automatic_Routing. Valid values: disable, enable.
    string
    Banner.
    DefaultGateway string
    Default-Gateway.
    DhcpRaGiaddr string
    Dhcp-Ra-Giaddr.
    DhcpServer string
    Dhcp-Server. Valid values: disable, enable.
    DnsMode string
    Dns-Mode. Valid values: auto, manual.
    DnsService string
    Dns-Service. Valid values: default, specify, local.
    Domain string
    Domain.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Encapsulation string
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    ExchangeInterfaceIp string
    Exchange-Interface-Ip. Valid values: disable, enable.
    Extgw string
    Extgw.
    ExtgwHubip string
    Extgw_Hubip.
    ExtgwP2PerNet string
    Extgw_P2_Per_Net. Valid values: disable, enable.
    Extgwip string
    Extgwip.
    Fosid double
    Id.
    HubIfaces List<string>
    Hub_Iface.
    HubPublicIp string
    Hub-Public-Ip.
    Ifaces List<string>
    Iface.
    IpRanges List<ObjectVpnmgrNodeIpRange>
    Ip-Range. The structure of ip_range block is documented below.
    IpsecLeaseHold double
    Ipsec-Lease-Hold.
    Ipv4DnsServer1 string
    Ipv4-Dns-Server1.
    Ipv4DnsServer2 string
    Ipv4-Dns-Server2.
    Ipv4DnsServer3 string
    Ipv4-Dns-Server3.
    Ipv4EndIp string
    Ipv4-End-Ip.
    Ipv4ExcludeRanges List<ObjectVpnmgrNodeIpv4ExcludeRange>
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    Ipv4Name string
    Ipv4-Name.
    Ipv4Netmask string
    Ipv4-Netmask.
    Ipv4SplitExclude string
    Ipv4-Split-Exclude.
    Ipv4SplitInclude string
    Ipv4-Split-Include.
    Ipv4StartIp string
    Ipv4-Start-Ip.
    Ipv4WinsServer1 string
    Ipv4-Wins-Server1.
    Ipv4WinsServer2 string
    Ipv4-Wins-Server2.
    L2tp string
    L2Tp. Valid values: disable, enable.
    LocalGw string
    Local-Gw.
    Localid string
    Localid.
    ModeCfg string
    Mode-Cfg. Valid values: disable, enable.
    ModeCfgIpVersion string
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    NetDevice string
    Net-Device. Valid values: disable, enable.
    NetworkId double
    Network-Id.
    NetworkOverlay string
    Network-Overlay. Valid values: enable, disable.
    ObjectVpnmgrNodeId string
    an identifier for the resource with format {{fosid}}.
    Peergrp string
    Peergrp.
    Peerid string
    Peerid.
    Peers List<string>
    Peer.
    Peertype string
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    ProtectedSubnets List<ObjectVpnmgrNodeProtectedSubnet>
    Protected_Subnet. The structure of protected_subnet block is documented below.
    Protocol double
    Protocol.
    PublicIp string
    Public-Ip.
    Role string
    Role. Valid values: hub, spoke.
    RouteOverlap string
    Route-Overlap. Valid values: use-old, use-new, allow.
    Scopemembers List<ObjectVpnmgrNodeScopemember>
    Scope Member. The structure of scopemember block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SpokeZones List<string>
    Spoke-Zone.
    SummaryAddrs List<ObjectVpnmgrNodeSummaryAddr>
    Summary_Addr. The structure of summary_addr block is documented below.
    TunnelSearch string
    Tunnel-Search. Valid values: selectors, nexthop.
    UnitySupport string
    Unity-Support. Valid values: disable, enable.
    Usrgrp string
    Usrgrp.
    VpnInterfacePriority double
    Vpn-Interface-Priority.
    VpnZones List<string>
    Vpn-Zone.
    Vpntables List<string>
    Vpntable.
    Xauthtype string
    Xauthtype. Valid values: disable, client, pap, chap, auto.
    AddRoute string
    Add-Route. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AssignIp string
    Assign-Ip. Valid values: disable, enable.
    AssignIpFrom string
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    Authpasswds []string
    Authpasswd.
    Authusr string
    Authusr.
    Authusrgrp string
    Authusrgrp.
    AutoConfiguration string
    Auto-Configuration. Valid values: disable, enable.
    AutoDiscoveryReceiver string
    Auto-Discovery-Receiver. Valid values: disable, enable.
    AutoDiscoverySender string
    Auto-Discovery-Sender. Valid values: disable, enable.
    AutomaticRouting string
    Automatic_Routing. Valid values: disable, enable.
    string
    Banner.
    DefaultGateway string
    Default-Gateway.
    DhcpRaGiaddr string
    Dhcp-Ra-Giaddr.
    DhcpServer string
    Dhcp-Server. Valid values: disable, enable.
    DnsMode string
    Dns-Mode. Valid values: auto, manual.
    DnsService string
    Dns-Service. Valid values: default, specify, local.
    Domain string
    Domain.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Encapsulation string
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    ExchangeInterfaceIp string
    Exchange-Interface-Ip. Valid values: disable, enable.
    Extgw string
    Extgw.
    ExtgwHubip string
    Extgw_Hubip.
    ExtgwP2PerNet string
    Extgw_P2_Per_Net. Valid values: disable, enable.
    Extgwip string
    Extgwip.
    Fosid float64
    Id.
    HubIfaces []string
    Hub_Iface.
    HubPublicIp string
    Hub-Public-Ip.
    Ifaces []string
    Iface.
    IpRanges []ObjectVpnmgrNodeIpRangeTypeArgs
    Ip-Range. The structure of ip_range block is documented below.
    IpsecLeaseHold float64
    Ipsec-Lease-Hold.
    Ipv4DnsServer1 string
    Ipv4-Dns-Server1.
    Ipv4DnsServer2 string
    Ipv4-Dns-Server2.
    Ipv4DnsServer3 string
    Ipv4-Dns-Server3.
    Ipv4EndIp string
    Ipv4-End-Ip.
    Ipv4ExcludeRanges []ObjectVpnmgrNodeIpv4ExcludeRangeTypeArgs
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    Ipv4Name string
    Ipv4-Name.
    Ipv4Netmask string
    Ipv4-Netmask.
    Ipv4SplitExclude string
    Ipv4-Split-Exclude.
    Ipv4SplitInclude string
    Ipv4-Split-Include.
    Ipv4StartIp string
    Ipv4-Start-Ip.
    Ipv4WinsServer1 string
    Ipv4-Wins-Server1.
    Ipv4WinsServer2 string
    Ipv4-Wins-Server2.
    L2tp string
    L2Tp. Valid values: disable, enable.
    LocalGw string
    Local-Gw.
    Localid string
    Localid.
    ModeCfg string
    Mode-Cfg. Valid values: disable, enable.
    ModeCfgIpVersion string
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    NetDevice string
    Net-Device. Valid values: disable, enable.
    NetworkId float64
    Network-Id.
    NetworkOverlay string
    Network-Overlay. Valid values: enable, disable.
    ObjectVpnmgrNodeId string
    an identifier for the resource with format {{fosid}}.
    Peergrp string
    Peergrp.
    Peerid string
    Peerid.
    Peers []string
    Peer.
    Peertype string
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    ProtectedSubnets []ObjectVpnmgrNodeProtectedSubnetTypeArgs
    Protected_Subnet. The structure of protected_subnet block is documented below.
    Protocol float64
    Protocol.
    PublicIp string
    Public-Ip.
    Role string
    Role. Valid values: hub, spoke.
    RouteOverlap string
    Route-Overlap. Valid values: use-old, use-new, allow.
    Scopemembers []ObjectVpnmgrNodeScopememberArgs
    Scope Member. The structure of scopemember block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SpokeZones []string
    Spoke-Zone.
    SummaryAddrs []ObjectVpnmgrNodeSummaryAddrTypeArgs
    Summary_Addr. The structure of summary_addr block is documented below.
    TunnelSearch string
    Tunnel-Search. Valid values: selectors, nexthop.
    UnitySupport string
    Unity-Support. Valid values: disable, enable.
    Usrgrp string
    Usrgrp.
    VpnInterfacePriority float64
    Vpn-Interface-Priority.
    VpnZones []string
    Vpn-Zone.
    Vpntables []string
    Vpntable.
    Xauthtype string
    Xauthtype. Valid values: disable, client, pap, chap, auto.
    addRoute String
    Add-Route. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    assignIp String
    Assign-Ip. Valid values: disable, enable.
    assignIpFrom String
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    authpasswds List<String>
    Authpasswd.
    authusr String
    Authusr.
    authusrgrp String
    Authusrgrp.
    autoConfiguration String
    Auto-Configuration. Valid values: disable, enable.
    autoDiscoveryReceiver String
    Auto-Discovery-Receiver. Valid values: disable, enable.
    autoDiscoverySender String
    Auto-Discovery-Sender. Valid values: disable, enable.
    automaticRouting String
    Automatic_Routing. Valid values: disable, enable.
    String
    Banner.
    defaultGateway String
    Default-Gateway.
    dhcpRaGiaddr String
    Dhcp-Ra-Giaddr.
    dhcpServer String
    Dhcp-Server. Valid values: disable, enable.
    dnsMode String
    Dns-Mode. Valid values: auto, manual.
    dnsService String
    Dns-Service. Valid values: default, specify, local.
    domain String
    Domain.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    encapsulation String
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    exchangeInterfaceIp String
    Exchange-Interface-Ip. Valid values: disable, enable.
    extgw String
    Extgw.
    extgwHubip String
    Extgw_Hubip.
    extgwP2PerNet String
    Extgw_P2_Per_Net. Valid values: disable, enable.
    extgwip String
    Extgwip.
    fosid Double
    Id.
    hubIfaces List<String>
    Hub_Iface.
    hubPublicIp String
    Hub-Public-Ip.
    ifaces List<String>
    Iface.
    ipRanges List<ObjectVpnmgrNodeIpRange>
    Ip-Range. The structure of ip_range block is documented below.
    ipsecLeaseHold Double
    Ipsec-Lease-Hold.
    ipv4DnsServer1 String
    Ipv4-Dns-Server1.
    ipv4DnsServer2 String
    Ipv4-Dns-Server2.
    ipv4DnsServer3 String
    Ipv4-Dns-Server3.
    ipv4EndIp String
    Ipv4-End-Ip.
    ipv4ExcludeRanges List<ObjectVpnmgrNodeIpv4ExcludeRange>
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    ipv4Name String
    Ipv4-Name.
    ipv4Netmask String
    Ipv4-Netmask.
    ipv4SplitExclude String
    Ipv4-Split-Exclude.
    ipv4SplitInclude String
    Ipv4-Split-Include.
    ipv4StartIp String
    Ipv4-Start-Ip.
    ipv4WinsServer1 String
    Ipv4-Wins-Server1.
    ipv4WinsServer2 String
    Ipv4-Wins-Server2.
    l2tp String
    L2Tp. Valid values: disable, enable.
    localGw String
    Local-Gw.
    localid String
    Localid.
    modeCfg String
    Mode-Cfg. Valid values: disable, enable.
    modeCfgIpVersion String
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    netDevice String
    Net-Device. Valid values: disable, enable.
    networkId Double
    Network-Id.
    networkOverlay String
    Network-Overlay. Valid values: enable, disable.
    objectVpnmgrNodeId String
    an identifier for the resource with format {{fosid}}.
    peergrp String
    Peergrp.
    peerid String
    Peerid.
    peers List<String>
    Peer.
    peertype String
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    protectedSubnets List<ObjectVpnmgrNodeProtectedSubnet>
    Protected_Subnet. The structure of protected_subnet block is documented below.
    protocol Double
    Protocol.
    publicIp String
    Public-Ip.
    role String
    Role. Valid values: hub, spoke.
    routeOverlap String
    Route-Overlap. Valid values: use-old, use-new, allow.
    scopemembers List<ObjectVpnmgrNodeScopemember>
    Scope Member. The structure of scopemember block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    spokeZones List<String>
    Spoke-Zone.
    summaryAddrs List<ObjectVpnmgrNodeSummaryAddr>
    Summary_Addr. The structure of summary_addr block is documented below.
    tunnelSearch String
    Tunnel-Search. Valid values: selectors, nexthop.
    unitySupport String
    Unity-Support. Valid values: disable, enable.
    usrgrp String
    Usrgrp.
    vpnInterfacePriority Double
    Vpn-Interface-Priority.
    vpnZones List<String>
    Vpn-Zone.
    vpntables List<String>
    Vpntable.
    xauthtype String
    Xauthtype. Valid values: disable, client, pap, chap, auto.
    addRoute string
    Add-Route. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    assignIp string
    Assign-Ip. Valid values: disable, enable.
    assignIpFrom string
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    authpasswds string[]
    Authpasswd.
    authusr string
    Authusr.
    authusrgrp string
    Authusrgrp.
    autoConfiguration string
    Auto-Configuration. Valid values: disable, enable.
    autoDiscoveryReceiver string
    Auto-Discovery-Receiver. Valid values: disable, enable.
    autoDiscoverySender string
    Auto-Discovery-Sender. Valid values: disable, enable.
    automaticRouting string
    Automatic_Routing. Valid values: disable, enable.
    string
    Banner.
    defaultGateway string
    Default-Gateway.
    dhcpRaGiaddr string
    Dhcp-Ra-Giaddr.
    dhcpServer string
    Dhcp-Server. Valid values: disable, enable.
    dnsMode string
    Dns-Mode. Valid values: auto, manual.
    dnsService string
    Dns-Service. Valid values: default, specify, local.
    domain string
    Domain.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    encapsulation string
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    exchangeInterfaceIp string
    Exchange-Interface-Ip. Valid values: disable, enable.
    extgw string
    Extgw.
    extgwHubip string
    Extgw_Hubip.
    extgwP2PerNet string
    Extgw_P2_Per_Net. Valid values: disable, enable.
    extgwip string
    Extgwip.
    fosid number
    Id.
    hubIfaces string[]
    Hub_Iface.
    hubPublicIp string
    Hub-Public-Ip.
    ifaces string[]
    Iface.
    ipRanges ObjectVpnmgrNodeIpRange[]
    Ip-Range. The structure of ip_range block is documented below.
    ipsecLeaseHold number
    Ipsec-Lease-Hold.
    ipv4DnsServer1 string
    Ipv4-Dns-Server1.
    ipv4DnsServer2 string
    Ipv4-Dns-Server2.
    ipv4DnsServer3 string
    Ipv4-Dns-Server3.
    ipv4EndIp string
    Ipv4-End-Ip.
    ipv4ExcludeRanges ObjectVpnmgrNodeIpv4ExcludeRange[]
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    ipv4Name string
    Ipv4-Name.
    ipv4Netmask string
    Ipv4-Netmask.
    ipv4SplitExclude string
    Ipv4-Split-Exclude.
    ipv4SplitInclude string
    Ipv4-Split-Include.
    ipv4StartIp string
    Ipv4-Start-Ip.
    ipv4WinsServer1 string
    Ipv4-Wins-Server1.
    ipv4WinsServer2 string
    Ipv4-Wins-Server2.
    l2tp string
    L2Tp. Valid values: disable, enable.
    localGw string
    Local-Gw.
    localid string
    Localid.
    modeCfg string
    Mode-Cfg. Valid values: disable, enable.
    modeCfgIpVersion string
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    netDevice string
    Net-Device. Valid values: disable, enable.
    networkId number
    Network-Id.
    networkOverlay string
    Network-Overlay. Valid values: enable, disable.
    objectVpnmgrNodeId string
    an identifier for the resource with format {{fosid}}.
    peergrp string
    Peergrp.
    peerid string
    Peerid.
    peers string[]
    Peer.
    peertype string
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    protectedSubnets ObjectVpnmgrNodeProtectedSubnet[]
    Protected_Subnet. The structure of protected_subnet block is documented below.
    protocol number
    Protocol.
    publicIp string
    Public-Ip.
    role string
    Role. Valid values: hub, spoke.
    routeOverlap string
    Route-Overlap. Valid values: use-old, use-new, allow.
    scopemembers ObjectVpnmgrNodeScopemember[]
    Scope Member. The structure of scopemember block is documented below.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    spokeZones string[]
    Spoke-Zone.
    summaryAddrs ObjectVpnmgrNodeSummaryAddr[]
    Summary_Addr. The structure of summary_addr block is documented below.
    tunnelSearch string
    Tunnel-Search. Valid values: selectors, nexthop.
    unitySupport string
    Unity-Support. Valid values: disable, enable.
    usrgrp string
    Usrgrp.
    vpnInterfacePriority number
    Vpn-Interface-Priority.
    vpnZones string[]
    Vpn-Zone.
    vpntables string[]
    Vpntable.
    xauthtype string
    Xauthtype. Valid values: disable, client, pap, chap, auto.
    add_route str
    Add-Route. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    assign_ip str
    Assign-Ip. Valid values: disable, enable.
    assign_ip_from str
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    authpasswds Sequence[str]
    Authpasswd.
    authusr str
    Authusr.
    authusrgrp str
    Authusrgrp.
    auto_configuration str
    Auto-Configuration. Valid values: disable, enable.
    auto_discovery_receiver str
    Auto-Discovery-Receiver. Valid values: disable, enable.
    auto_discovery_sender str
    Auto-Discovery-Sender. Valid values: disable, enable.
    automatic_routing str
    Automatic_Routing. Valid values: disable, enable.
    str
    Banner.
    default_gateway str
    Default-Gateway.
    dhcp_ra_giaddr str
    Dhcp-Ra-Giaddr.
    dhcp_server str
    Dhcp-Server. Valid values: disable, enable.
    dns_mode str
    Dns-Mode. Valid values: auto, manual.
    dns_service str
    Dns-Service. Valid values: default, specify, local.
    domain str
    Domain.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    encapsulation str
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    exchange_interface_ip str
    Exchange-Interface-Ip. Valid values: disable, enable.
    extgw str
    Extgw.
    extgw_hubip str
    Extgw_Hubip.
    extgw_p2_per_net str
    Extgw_P2_Per_Net. Valid values: disable, enable.
    extgwip str
    Extgwip.
    fosid float
    Id.
    hub_ifaces Sequence[str]
    Hub_Iface.
    hub_public_ip str
    Hub-Public-Ip.
    ifaces Sequence[str]
    Iface.
    ip_ranges Sequence[ObjectVpnmgrNodeIpRangeArgs]
    Ip-Range. The structure of ip_range block is documented below.
    ipsec_lease_hold float
    Ipsec-Lease-Hold.
    ipv4_dns_server1 str
    Ipv4-Dns-Server1.
    ipv4_dns_server2 str
    Ipv4-Dns-Server2.
    ipv4_dns_server3 str
    Ipv4-Dns-Server3.
    ipv4_end_ip str
    Ipv4-End-Ip.
    ipv4_exclude_ranges Sequence[ObjectVpnmgrNodeIpv4ExcludeRangeArgs]
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    ipv4_name str
    Ipv4-Name.
    ipv4_netmask str
    Ipv4-Netmask.
    ipv4_split_exclude str
    Ipv4-Split-Exclude.
    ipv4_split_include str
    Ipv4-Split-Include.
    ipv4_start_ip str
    Ipv4-Start-Ip.
    ipv4_wins_server1 str
    Ipv4-Wins-Server1.
    ipv4_wins_server2 str
    Ipv4-Wins-Server2.
    l2tp str
    L2Tp. Valid values: disable, enable.
    local_gw str
    Local-Gw.
    localid str
    Localid.
    mode_cfg str
    Mode-Cfg. Valid values: disable, enable.
    mode_cfg_ip_version str
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    net_device str
    Net-Device. Valid values: disable, enable.
    network_id float
    Network-Id.
    network_overlay str
    Network-Overlay. Valid values: enable, disable.
    object_vpnmgr_node_id str
    an identifier for the resource with format {{fosid}}.
    peergrp str
    Peergrp.
    peerid str
    Peerid.
    peers Sequence[str]
    Peer.
    peertype str
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    protected_subnets Sequence[ObjectVpnmgrNodeProtectedSubnetArgs]
    Protected_Subnet. The structure of protected_subnet block is documented below.
    protocol float
    Protocol.
    public_ip str
    Public-Ip.
    role str
    Role. Valid values: hub, spoke.
    route_overlap str
    Route-Overlap. Valid values: use-old, use-new, allow.
    scopemembers Sequence[ObjectVpnmgrNodeScopememberArgs]
    Scope Member. The structure of scopemember block is documented below.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    spoke_zones Sequence[str]
    Spoke-Zone.
    summary_addrs Sequence[ObjectVpnmgrNodeSummaryAddrArgs]
    Summary_Addr. The structure of summary_addr block is documented below.
    tunnel_search str
    Tunnel-Search. Valid values: selectors, nexthop.
    unity_support str
    Unity-Support. Valid values: disable, enable.
    usrgrp str
    Usrgrp.
    vpn_interface_priority float
    Vpn-Interface-Priority.
    vpn_zones Sequence[str]
    Vpn-Zone.
    vpntables Sequence[str]
    Vpntable.
    xauthtype str
    Xauthtype. Valid values: disable, client, pap, chap, auto.
    addRoute String
    Add-Route. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    assignIp String
    Assign-Ip. Valid values: disable, enable.
    assignIpFrom String
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    authpasswds List<String>
    Authpasswd.
    authusr String
    Authusr.
    authusrgrp String
    Authusrgrp.
    autoConfiguration String
    Auto-Configuration. Valid values: disable, enable.
    autoDiscoveryReceiver String
    Auto-Discovery-Receiver. Valid values: disable, enable.
    autoDiscoverySender String
    Auto-Discovery-Sender. Valid values: disable, enable.
    automaticRouting String
    Automatic_Routing. Valid values: disable, enable.
    String
    Banner.
    defaultGateway String
    Default-Gateway.
    dhcpRaGiaddr String
    Dhcp-Ra-Giaddr.
    dhcpServer String
    Dhcp-Server. Valid values: disable, enable.
    dnsMode String
    Dns-Mode. Valid values: auto, manual.
    dnsService String
    Dns-Service. Valid values: default, specify, local.
    domain String
    Domain.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    encapsulation String
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    exchangeInterfaceIp String
    Exchange-Interface-Ip. Valid values: disable, enable.
    extgw String
    Extgw.
    extgwHubip String
    Extgw_Hubip.
    extgwP2PerNet String
    Extgw_P2_Per_Net. Valid values: disable, enable.
    extgwip String
    Extgwip.
    fosid Number
    Id.
    hubIfaces List<String>
    Hub_Iface.
    hubPublicIp String
    Hub-Public-Ip.
    ifaces List<String>
    Iface.
    ipRanges List<Property Map>
    Ip-Range. The structure of ip_range block is documented below.
    ipsecLeaseHold Number
    Ipsec-Lease-Hold.
    ipv4DnsServer1 String
    Ipv4-Dns-Server1.
    ipv4DnsServer2 String
    Ipv4-Dns-Server2.
    ipv4DnsServer3 String
    Ipv4-Dns-Server3.
    ipv4EndIp String
    Ipv4-End-Ip.
    ipv4ExcludeRanges List<Property Map>
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    ipv4Name String
    Ipv4-Name.
    ipv4Netmask String
    Ipv4-Netmask.
    ipv4SplitExclude String
    Ipv4-Split-Exclude.
    ipv4SplitInclude String
    Ipv4-Split-Include.
    ipv4StartIp String
    Ipv4-Start-Ip.
    ipv4WinsServer1 String
    Ipv4-Wins-Server1.
    ipv4WinsServer2 String
    Ipv4-Wins-Server2.
    l2tp String
    L2Tp. Valid values: disable, enable.
    localGw String
    Local-Gw.
    localid String
    Localid.
    modeCfg String
    Mode-Cfg. Valid values: disable, enable.
    modeCfgIpVersion String
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    netDevice String
    Net-Device. Valid values: disable, enable.
    networkId Number
    Network-Id.
    networkOverlay String
    Network-Overlay. Valid values: enable, disable.
    objectVpnmgrNodeId String
    an identifier for the resource with format {{fosid}}.
    peergrp String
    Peergrp.
    peerid String
    Peerid.
    peers List<String>
    Peer.
    peertype String
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    protectedSubnets List<Property Map>
    Protected_Subnet. The structure of protected_subnet block is documented below.
    protocol Number
    Protocol.
    publicIp String
    Public-Ip.
    role String
    Role. Valid values: hub, spoke.
    routeOverlap String
    Route-Overlap. Valid values: use-old, use-new, allow.
    scopemembers List<Property Map>
    Scope Member. The structure of scopemember block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    spokeZones List<String>
    Spoke-Zone.
    summaryAddrs List<Property Map>
    Summary_Addr. The structure of summary_addr block is documented below.
    tunnelSearch String
    Tunnel-Search. Valid values: selectors, nexthop.
    unitySupport String
    Unity-Support. Valid values: disable, enable.
    usrgrp String
    Usrgrp.
    vpnInterfacePriority Number
    Vpn-Interface-Priority.
    vpnZones List<String>
    Vpn-Zone.
    vpntables List<String>
    Vpntable.
    xauthtype String
    Xauthtype. Valid values: disable, client, pap, chap, auto.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectVpnmgrNode 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 string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ObjectVpnmgrNode Resource

    Get an existing ObjectVpnmgrNode 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?: ObjectVpnmgrNodeState, opts?: CustomResourceOptions): ObjectVpnmgrNode
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            add_route: Optional[str] = None,
            adom: Optional[str] = None,
            assign_ip: Optional[str] = None,
            assign_ip_from: Optional[str] = None,
            authpasswds: Optional[Sequence[str]] = None,
            authusr: Optional[str] = None,
            authusrgrp: Optional[str] = None,
            auto_configuration: Optional[str] = None,
            auto_discovery_receiver: Optional[str] = None,
            auto_discovery_sender: Optional[str] = None,
            automatic_routing: Optional[str] = None,
            banner: Optional[str] = None,
            default_gateway: Optional[str] = None,
            dhcp_ra_giaddr: Optional[str] = None,
            dhcp_server: Optional[str] = None,
            dns_mode: Optional[str] = None,
            dns_service: Optional[str] = None,
            domain: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            encapsulation: Optional[str] = None,
            exchange_interface_ip: Optional[str] = None,
            extgw: Optional[str] = None,
            extgw_hubip: Optional[str] = None,
            extgw_p2_per_net: Optional[str] = None,
            extgwip: Optional[str] = None,
            fosid: Optional[float] = None,
            hub_ifaces: Optional[Sequence[str]] = None,
            hub_public_ip: Optional[str] = None,
            ifaces: Optional[Sequence[str]] = None,
            ip_ranges: Optional[Sequence[ObjectVpnmgrNodeIpRangeArgs]] = None,
            ipsec_lease_hold: Optional[float] = None,
            ipv4_dns_server1: Optional[str] = None,
            ipv4_dns_server2: Optional[str] = None,
            ipv4_dns_server3: Optional[str] = None,
            ipv4_end_ip: Optional[str] = None,
            ipv4_exclude_ranges: Optional[Sequence[ObjectVpnmgrNodeIpv4ExcludeRangeArgs]] = None,
            ipv4_name: Optional[str] = None,
            ipv4_netmask: Optional[str] = None,
            ipv4_split_exclude: Optional[str] = None,
            ipv4_split_include: Optional[str] = None,
            ipv4_start_ip: Optional[str] = None,
            ipv4_wins_server1: Optional[str] = None,
            ipv4_wins_server2: Optional[str] = None,
            l2tp: Optional[str] = None,
            local_gw: Optional[str] = None,
            localid: Optional[str] = None,
            mode_cfg: Optional[str] = None,
            mode_cfg_ip_version: Optional[str] = None,
            net_device: Optional[str] = None,
            network_id: Optional[float] = None,
            network_overlay: Optional[str] = None,
            object_vpnmgr_node_id: Optional[str] = None,
            peergrp: Optional[str] = None,
            peerid: Optional[str] = None,
            peers: Optional[Sequence[str]] = None,
            peertype: Optional[str] = None,
            protected_subnets: Optional[Sequence[ObjectVpnmgrNodeProtectedSubnetArgs]] = None,
            protocol: Optional[float] = None,
            public_ip: Optional[str] = None,
            role: Optional[str] = None,
            route_overlap: Optional[str] = None,
            scopemembers: Optional[Sequence[ObjectVpnmgrNodeScopememberArgs]] = None,
            scopetype: Optional[str] = None,
            spoke_zones: Optional[Sequence[str]] = None,
            summary_addrs: Optional[Sequence[ObjectVpnmgrNodeSummaryAddrArgs]] = None,
            tunnel_search: Optional[str] = None,
            unity_support: Optional[str] = None,
            usrgrp: Optional[str] = None,
            vpn_interface_priority: Optional[float] = None,
            vpn_zones: Optional[Sequence[str]] = None,
            vpntables: Optional[Sequence[str]] = None,
            xauthtype: Optional[str] = None) -> ObjectVpnmgrNode
    func GetObjectVpnmgrNode(ctx *Context, name string, id IDInput, state *ObjectVpnmgrNodeState, opts ...ResourceOption) (*ObjectVpnmgrNode, error)
    public static ObjectVpnmgrNode Get(string name, Input<string> id, ObjectVpnmgrNodeState? state, CustomResourceOptions? opts = null)
    public static ObjectVpnmgrNode get(String name, Output<String> id, ObjectVpnmgrNodeState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectVpnmgrNode    get:      id: ${id}
    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:
    AddRoute string
    Add-Route. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AssignIp string
    Assign-Ip. Valid values: disable, enable.
    AssignIpFrom string
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    Authpasswds List<string>
    Authpasswd.
    Authusr string
    Authusr.
    Authusrgrp string
    Authusrgrp.
    AutoConfiguration string
    Auto-Configuration. Valid values: disable, enable.
    AutoDiscoveryReceiver string
    Auto-Discovery-Receiver. Valid values: disable, enable.
    AutoDiscoverySender string
    Auto-Discovery-Sender. Valid values: disable, enable.
    AutomaticRouting string
    Automatic_Routing. Valid values: disable, enable.
    Banner string
    Banner.
    DefaultGateway string
    Default-Gateway.
    DhcpRaGiaddr string
    Dhcp-Ra-Giaddr.
    DhcpServer string
    Dhcp-Server. Valid values: disable, enable.
    DnsMode string
    Dns-Mode. Valid values: auto, manual.
    DnsService string
    Dns-Service. Valid values: default, specify, local.
    Domain string
    Domain.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Encapsulation string
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    ExchangeInterfaceIp string
    Exchange-Interface-Ip. Valid values: disable, enable.
    Extgw string
    Extgw.
    ExtgwHubip string
    Extgw_Hubip.
    ExtgwP2PerNet string
    Extgw_P2_Per_Net. Valid values: disable, enable.
    Extgwip string
    Extgwip.
    Fosid double
    Id.
    HubIfaces List<string>
    Hub_Iface.
    HubPublicIp string
    Hub-Public-Ip.
    Ifaces List<string>
    Iface.
    IpRanges List<ObjectVpnmgrNodeIpRange>
    Ip-Range. The structure of ip_range block is documented below.
    IpsecLeaseHold double
    Ipsec-Lease-Hold.
    Ipv4DnsServer1 string
    Ipv4-Dns-Server1.
    Ipv4DnsServer2 string
    Ipv4-Dns-Server2.
    Ipv4DnsServer3 string
    Ipv4-Dns-Server3.
    Ipv4EndIp string
    Ipv4-End-Ip.
    Ipv4ExcludeRanges List<ObjectVpnmgrNodeIpv4ExcludeRange>
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    Ipv4Name string
    Ipv4-Name.
    Ipv4Netmask string
    Ipv4-Netmask.
    Ipv4SplitExclude string
    Ipv4-Split-Exclude.
    Ipv4SplitInclude string
    Ipv4-Split-Include.
    Ipv4StartIp string
    Ipv4-Start-Ip.
    Ipv4WinsServer1 string
    Ipv4-Wins-Server1.
    Ipv4WinsServer2 string
    Ipv4-Wins-Server2.
    L2tp string
    L2Tp. Valid values: disable, enable.
    LocalGw string
    Local-Gw.
    Localid string
    Localid.
    ModeCfg string
    Mode-Cfg. Valid values: disable, enable.
    ModeCfgIpVersion string
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    NetDevice string
    Net-Device. Valid values: disable, enable.
    NetworkId double
    Network-Id.
    NetworkOverlay string
    Network-Overlay. Valid values: enable, disable.
    ObjectVpnmgrNodeId string
    an identifier for the resource with format {{fosid}}.
    Peergrp string
    Peergrp.
    Peerid string
    Peerid.
    Peers List<string>
    Peer.
    Peertype string
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    ProtectedSubnets List<ObjectVpnmgrNodeProtectedSubnet>
    Protected_Subnet. The structure of protected_subnet block is documented below.
    Protocol double
    Protocol.
    PublicIp string
    Public-Ip.
    Role string
    Role. Valid values: hub, spoke.
    RouteOverlap string
    Route-Overlap. Valid values: use-old, use-new, allow.
    Scopemembers List<ObjectVpnmgrNodeScopemember>
    Scope Member. The structure of scopemember block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SpokeZones List<string>
    Spoke-Zone.
    SummaryAddrs List<ObjectVpnmgrNodeSummaryAddr>
    Summary_Addr. The structure of summary_addr block is documented below.
    TunnelSearch string
    Tunnel-Search. Valid values: selectors, nexthop.
    UnitySupport string
    Unity-Support. Valid values: disable, enable.
    Usrgrp string
    Usrgrp.
    VpnInterfacePriority double
    Vpn-Interface-Priority.
    VpnZones List<string>
    Vpn-Zone.
    Vpntables List<string>
    Vpntable.
    Xauthtype string
    Xauthtype. Valid values: disable, client, pap, chap, auto.
    AddRoute string
    Add-Route. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AssignIp string
    Assign-Ip. Valid values: disable, enable.
    AssignIpFrom string
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    Authpasswds []string
    Authpasswd.
    Authusr string
    Authusr.
    Authusrgrp string
    Authusrgrp.
    AutoConfiguration string
    Auto-Configuration. Valid values: disable, enable.
    AutoDiscoveryReceiver string
    Auto-Discovery-Receiver. Valid values: disable, enable.
    AutoDiscoverySender string
    Auto-Discovery-Sender. Valid values: disable, enable.
    AutomaticRouting string
    Automatic_Routing. Valid values: disable, enable.
    Banner string
    Banner.
    DefaultGateway string
    Default-Gateway.
    DhcpRaGiaddr string
    Dhcp-Ra-Giaddr.
    DhcpServer string
    Dhcp-Server. Valid values: disable, enable.
    DnsMode string
    Dns-Mode. Valid values: auto, manual.
    DnsService string
    Dns-Service. Valid values: default, specify, local.
    Domain string
    Domain.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Encapsulation string
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    ExchangeInterfaceIp string
    Exchange-Interface-Ip. Valid values: disable, enable.
    Extgw string
    Extgw.
    ExtgwHubip string
    Extgw_Hubip.
    ExtgwP2PerNet string
    Extgw_P2_Per_Net. Valid values: disable, enable.
    Extgwip string
    Extgwip.
    Fosid float64
    Id.
    HubIfaces []string
    Hub_Iface.
    HubPublicIp string
    Hub-Public-Ip.
    Ifaces []string
    Iface.
    IpRanges []ObjectVpnmgrNodeIpRangeTypeArgs
    Ip-Range. The structure of ip_range block is documented below.
    IpsecLeaseHold float64
    Ipsec-Lease-Hold.
    Ipv4DnsServer1 string
    Ipv4-Dns-Server1.
    Ipv4DnsServer2 string
    Ipv4-Dns-Server2.
    Ipv4DnsServer3 string
    Ipv4-Dns-Server3.
    Ipv4EndIp string
    Ipv4-End-Ip.
    Ipv4ExcludeRanges []ObjectVpnmgrNodeIpv4ExcludeRangeTypeArgs
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    Ipv4Name string
    Ipv4-Name.
    Ipv4Netmask string
    Ipv4-Netmask.
    Ipv4SplitExclude string
    Ipv4-Split-Exclude.
    Ipv4SplitInclude string
    Ipv4-Split-Include.
    Ipv4StartIp string
    Ipv4-Start-Ip.
    Ipv4WinsServer1 string
    Ipv4-Wins-Server1.
    Ipv4WinsServer2 string
    Ipv4-Wins-Server2.
    L2tp string
    L2Tp. Valid values: disable, enable.
    LocalGw string
    Local-Gw.
    Localid string
    Localid.
    ModeCfg string
    Mode-Cfg. Valid values: disable, enable.
    ModeCfgIpVersion string
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    NetDevice string
    Net-Device. Valid values: disable, enable.
    NetworkId float64
    Network-Id.
    NetworkOverlay string
    Network-Overlay. Valid values: enable, disable.
    ObjectVpnmgrNodeId string
    an identifier for the resource with format {{fosid}}.
    Peergrp string
    Peergrp.
    Peerid string
    Peerid.
    Peers []string
    Peer.
    Peertype string
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    ProtectedSubnets []ObjectVpnmgrNodeProtectedSubnetTypeArgs
    Protected_Subnet. The structure of protected_subnet block is documented below.
    Protocol float64
    Protocol.
    PublicIp string
    Public-Ip.
    Role string
    Role. Valid values: hub, spoke.
    RouteOverlap string
    Route-Overlap. Valid values: use-old, use-new, allow.
    Scopemembers []ObjectVpnmgrNodeScopememberArgs
    Scope Member. The structure of scopemember block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SpokeZones []string
    Spoke-Zone.
    SummaryAddrs []ObjectVpnmgrNodeSummaryAddrTypeArgs
    Summary_Addr. The structure of summary_addr block is documented below.
    TunnelSearch string
    Tunnel-Search. Valid values: selectors, nexthop.
    UnitySupport string
    Unity-Support. Valid values: disable, enable.
    Usrgrp string
    Usrgrp.
    VpnInterfacePriority float64
    Vpn-Interface-Priority.
    VpnZones []string
    Vpn-Zone.
    Vpntables []string
    Vpntable.
    Xauthtype string
    Xauthtype. Valid values: disable, client, pap, chap, auto.
    addRoute String
    Add-Route. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    assignIp String
    Assign-Ip. Valid values: disable, enable.
    assignIpFrom String
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    authpasswds List<String>
    Authpasswd.
    authusr String
    Authusr.
    authusrgrp String
    Authusrgrp.
    autoConfiguration String
    Auto-Configuration. Valid values: disable, enable.
    autoDiscoveryReceiver String
    Auto-Discovery-Receiver. Valid values: disable, enable.
    autoDiscoverySender String
    Auto-Discovery-Sender. Valid values: disable, enable.
    automaticRouting String
    Automatic_Routing. Valid values: disable, enable.
    banner String
    Banner.
    defaultGateway String
    Default-Gateway.
    dhcpRaGiaddr String
    Dhcp-Ra-Giaddr.
    dhcpServer String
    Dhcp-Server. Valid values: disable, enable.
    dnsMode String
    Dns-Mode. Valid values: auto, manual.
    dnsService String
    Dns-Service. Valid values: default, specify, local.
    domain String
    Domain.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    encapsulation String
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    exchangeInterfaceIp String
    Exchange-Interface-Ip. Valid values: disable, enable.
    extgw String
    Extgw.
    extgwHubip String
    Extgw_Hubip.
    extgwP2PerNet String
    Extgw_P2_Per_Net. Valid values: disable, enable.
    extgwip String
    Extgwip.
    fosid Double
    Id.
    hubIfaces List<String>
    Hub_Iface.
    hubPublicIp String
    Hub-Public-Ip.
    ifaces List<String>
    Iface.
    ipRanges List<ObjectVpnmgrNodeIpRange>
    Ip-Range. The structure of ip_range block is documented below.
    ipsecLeaseHold Double
    Ipsec-Lease-Hold.
    ipv4DnsServer1 String
    Ipv4-Dns-Server1.
    ipv4DnsServer2 String
    Ipv4-Dns-Server2.
    ipv4DnsServer3 String
    Ipv4-Dns-Server3.
    ipv4EndIp String
    Ipv4-End-Ip.
    ipv4ExcludeRanges List<ObjectVpnmgrNodeIpv4ExcludeRange>
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    ipv4Name String
    Ipv4-Name.
    ipv4Netmask String
    Ipv4-Netmask.
    ipv4SplitExclude String
    Ipv4-Split-Exclude.
    ipv4SplitInclude String
    Ipv4-Split-Include.
    ipv4StartIp String
    Ipv4-Start-Ip.
    ipv4WinsServer1 String
    Ipv4-Wins-Server1.
    ipv4WinsServer2 String
    Ipv4-Wins-Server2.
    l2tp String
    L2Tp. Valid values: disable, enable.
    localGw String
    Local-Gw.
    localid String
    Localid.
    modeCfg String
    Mode-Cfg. Valid values: disable, enable.
    modeCfgIpVersion String
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    netDevice String
    Net-Device. Valid values: disable, enable.
    networkId Double
    Network-Id.
    networkOverlay String
    Network-Overlay. Valid values: enable, disable.
    objectVpnmgrNodeId String
    an identifier for the resource with format {{fosid}}.
    peergrp String
    Peergrp.
    peerid String
    Peerid.
    peers List<String>
    Peer.
    peertype String
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    protectedSubnets List<ObjectVpnmgrNodeProtectedSubnet>
    Protected_Subnet. The structure of protected_subnet block is documented below.
    protocol Double
    Protocol.
    publicIp String
    Public-Ip.
    role String
    Role. Valid values: hub, spoke.
    routeOverlap String
    Route-Overlap. Valid values: use-old, use-new, allow.
    scopemembers List<ObjectVpnmgrNodeScopemember>
    Scope Member. The structure of scopemember block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    spokeZones List<String>
    Spoke-Zone.
    summaryAddrs List<ObjectVpnmgrNodeSummaryAddr>
    Summary_Addr. The structure of summary_addr block is documented below.
    tunnelSearch String
    Tunnel-Search. Valid values: selectors, nexthop.
    unitySupport String
    Unity-Support. Valid values: disable, enable.
    usrgrp String
    Usrgrp.
    vpnInterfacePriority Double
    Vpn-Interface-Priority.
    vpnZones List<String>
    Vpn-Zone.
    vpntables List<String>
    Vpntable.
    xauthtype String
    Xauthtype. Valid values: disable, client, pap, chap, auto.
    addRoute string
    Add-Route. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    assignIp string
    Assign-Ip. Valid values: disable, enable.
    assignIpFrom string
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    authpasswds string[]
    Authpasswd.
    authusr string
    Authusr.
    authusrgrp string
    Authusrgrp.
    autoConfiguration string
    Auto-Configuration. Valid values: disable, enable.
    autoDiscoveryReceiver string
    Auto-Discovery-Receiver. Valid values: disable, enable.
    autoDiscoverySender string
    Auto-Discovery-Sender. Valid values: disable, enable.
    automaticRouting string
    Automatic_Routing. Valid values: disable, enable.
    banner string
    Banner.
    defaultGateway string
    Default-Gateway.
    dhcpRaGiaddr string
    Dhcp-Ra-Giaddr.
    dhcpServer string
    Dhcp-Server. Valid values: disable, enable.
    dnsMode string
    Dns-Mode. Valid values: auto, manual.
    dnsService string
    Dns-Service. Valid values: default, specify, local.
    domain string
    Domain.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    encapsulation string
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    exchangeInterfaceIp string
    Exchange-Interface-Ip. Valid values: disable, enable.
    extgw string
    Extgw.
    extgwHubip string
    Extgw_Hubip.
    extgwP2PerNet string
    Extgw_P2_Per_Net. Valid values: disable, enable.
    extgwip string
    Extgwip.
    fosid number
    Id.
    hubIfaces string[]
    Hub_Iface.
    hubPublicIp string
    Hub-Public-Ip.
    ifaces string[]
    Iface.
    ipRanges ObjectVpnmgrNodeIpRange[]
    Ip-Range. The structure of ip_range block is documented below.
    ipsecLeaseHold number
    Ipsec-Lease-Hold.
    ipv4DnsServer1 string
    Ipv4-Dns-Server1.
    ipv4DnsServer2 string
    Ipv4-Dns-Server2.
    ipv4DnsServer3 string
    Ipv4-Dns-Server3.
    ipv4EndIp string
    Ipv4-End-Ip.
    ipv4ExcludeRanges ObjectVpnmgrNodeIpv4ExcludeRange[]
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    ipv4Name string
    Ipv4-Name.
    ipv4Netmask string
    Ipv4-Netmask.
    ipv4SplitExclude string
    Ipv4-Split-Exclude.
    ipv4SplitInclude string
    Ipv4-Split-Include.
    ipv4StartIp string
    Ipv4-Start-Ip.
    ipv4WinsServer1 string
    Ipv4-Wins-Server1.
    ipv4WinsServer2 string
    Ipv4-Wins-Server2.
    l2tp string
    L2Tp. Valid values: disable, enable.
    localGw string
    Local-Gw.
    localid string
    Localid.
    modeCfg string
    Mode-Cfg. Valid values: disable, enable.
    modeCfgIpVersion string
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    netDevice string
    Net-Device. Valid values: disable, enable.
    networkId number
    Network-Id.
    networkOverlay string
    Network-Overlay. Valid values: enable, disable.
    objectVpnmgrNodeId string
    an identifier for the resource with format {{fosid}}.
    peergrp string
    Peergrp.
    peerid string
    Peerid.
    peers string[]
    Peer.
    peertype string
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    protectedSubnets ObjectVpnmgrNodeProtectedSubnet[]
    Protected_Subnet. The structure of protected_subnet block is documented below.
    protocol number
    Protocol.
    publicIp string
    Public-Ip.
    role string
    Role. Valid values: hub, spoke.
    routeOverlap string
    Route-Overlap. Valid values: use-old, use-new, allow.
    scopemembers ObjectVpnmgrNodeScopemember[]
    Scope Member. The structure of scopemember block is documented below.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    spokeZones string[]
    Spoke-Zone.
    summaryAddrs ObjectVpnmgrNodeSummaryAddr[]
    Summary_Addr. The structure of summary_addr block is documented below.
    tunnelSearch string
    Tunnel-Search. Valid values: selectors, nexthop.
    unitySupport string
    Unity-Support. Valid values: disable, enable.
    usrgrp string
    Usrgrp.
    vpnInterfacePriority number
    Vpn-Interface-Priority.
    vpnZones string[]
    Vpn-Zone.
    vpntables string[]
    Vpntable.
    xauthtype string
    Xauthtype. Valid values: disable, client, pap, chap, auto.
    add_route str
    Add-Route. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    assign_ip str
    Assign-Ip. Valid values: disable, enable.
    assign_ip_from str
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    authpasswds Sequence[str]
    Authpasswd.
    authusr str
    Authusr.
    authusrgrp str
    Authusrgrp.
    auto_configuration str
    Auto-Configuration. Valid values: disable, enable.
    auto_discovery_receiver str
    Auto-Discovery-Receiver. Valid values: disable, enable.
    auto_discovery_sender str
    Auto-Discovery-Sender. Valid values: disable, enable.
    automatic_routing str
    Automatic_Routing. Valid values: disable, enable.
    banner str
    Banner.
    default_gateway str
    Default-Gateway.
    dhcp_ra_giaddr str
    Dhcp-Ra-Giaddr.
    dhcp_server str
    Dhcp-Server. Valid values: disable, enable.
    dns_mode str
    Dns-Mode. Valid values: auto, manual.
    dns_service str
    Dns-Service. Valid values: default, specify, local.
    domain str
    Domain.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    encapsulation str
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    exchange_interface_ip str
    Exchange-Interface-Ip. Valid values: disable, enable.
    extgw str
    Extgw.
    extgw_hubip str
    Extgw_Hubip.
    extgw_p2_per_net str
    Extgw_P2_Per_Net. Valid values: disable, enable.
    extgwip str
    Extgwip.
    fosid float
    Id.
    hub_ifaces Sequence[str]
    Hub_Iface.
    hub_public_ip str
    Hub-Public-Ip.
    ifaces Sequence[str]
    Iface.
    ip_ranges Sequence[ObjectVpnmgrNodeIpRangeArgs]
    Ip-Range. The structure of ip_range block is documented below.
    ipsec_lease_hold float
    Ipsec-Lease-Hold.
    ipv4_dns_server1 str
    Ipv4-Dns-Server1.
    ipv4_dns_server2 str
    Ipv4-Dns-Server2.
    ipv4_dns_server3 str
    Ipv4-Dns-Server3.
    ipv4_end_ip str
    Ipv4-End-Ip.
    ipv4_exclude_ranges Sequence[ObjectVpnmgrNodeIpv4ExcludeRangeArgs]
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    ipv4_name str
    Ipv4-Name.
    ipv4_netmask str
    Ipv4-Netmask.
    ipv4_split_exclude str
    Ipv4-Split-Exclude.
    ipv4_split_include str
    Ipv4-Split-Include.
    ipv4_start_ip str
    Ipv4-Start-Ip.
    ipv4_wins_server1 str
    Ipv4-Wins-Server1.
    ipv4_wins_server2 str
    Ipv4-Wins-Server2.
    l2tp str
    L2Tp. Valid values: disable, enable.
    local_gw str
    Local-Gw.
    localid str
    Localid.
    mode_cfg str
    Mode-Cfg. Valid values: disable, enable.
    mode_cfg_ip_version str
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    net_device str
    Net-Device. Valid values: disable, enable.
    network_id float
    Network-Id.
    network_overlay str
    Network-Overlay. Valid values: enable, disable.
    object_vpnmgr_node_id str
    an identifier for the resource with format {{fosid}}.
    peergrp str
    Peergrp.
    peerid str
    Peerid.
    peers Sequence[str]
    Peer.
    peertype str
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    protected_subnets Sequence[ObjectVpnmgrNodeProtectedSubnetArgs]
    Protected_Subnet. The structure of protected_subnet block is documented below.
    protocol float
    Protocol.
    public_ip str
    Public-Ip.
    role str
    Role. Valid values: hub, spoke.
    route_overlap str
    Route-Overlap. Valid values: use-old, use-new, allow.
    scopemembers Sequence[ObjectVpnmgrNodeScopememberArgs]
    Scope Member. The structure of scopemember block is documented below.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    spoke_zones Sequence[str]
    Spoke-Zone.
    summary_addrs Sequence[ObjectVpnmgrNodeSummaryAddrArgs]
    Summary_Addr. The structure of summary_addr block is documented below.
    tunnel_search str
    Tunnel-Search. Valid values: selectors, nexthop.
    unity_support str
    Unity-Support. Valid values: disable, enable.
    usrgrp str
    Usrgrp.
    vpn_interface_priority float
    Vpn-Interface-Priority.
    vpn_zones Sequence[str]
    Vpn-Zone.
    vpntables Sequence[str]
    Vpntable.
    xauthtype str
    Xauthtype. Valid values: disable, client, pap, chap, auto.
    addRoute String
    Add-Route. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    assignIp String
    Assign-Ip. Valid values: disable, enable.
    assignIpFrom String
    Assign-Ip-From. Valid values: range, usrgrp, dhcp, name.
    authpasswds List<String>
    Authpasswd.
    authusr String
    Authusr.
    authusrgrp String
    Authusrgrp.
    autoConfiguration String
    Auto-Configuration. Valid values: disable, enable.
    autoDiscoveryReceiver String
    Auto-Discovery-Receiver. Valid values: disable, enable.
    autoDiscoverySender String
    Auto-Discovery-Sender. Valid values: disable, enable.
    automaticRouting String
    Automatic_Routing. Valid values: disable, enable.
    banner String
    Banner.
    defaultGateway String
    Default-Gateway.
    dhcpRaGiaddr String
    Dhcp-Ra-Giaddr.
    dhcpServer String
    Dhcp-Server. Valid values: disable, enable.
    dnsMode String
    Dns-Mode. Valid values: auto, manual.
    dnsService String
    Dns-Service. Valid values: default, specify, local.
    domain String
    Domain.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    encapsulation String
    Encapsulation. Valid values: tunnel-mode, transport-mode.
    exchangeInterfaceIp String
    Exchange-Interface-Ip. Valid values: disable, enable.
    extgw String
    Extgw.
    extgwHubip String
    Extgw_Hubip.
    extgwP2PerNet String
    Extgw_P2_Per_Net. Valid values: disable, enable.
    extgwip String
    Extgwip.
    fosid Number
    Id.
    hubIfaces List<String>
    Hub_Iface.
    hubPublicIp String
    Hub-Public-Ip.
    ifaces List<String>
    Iface.
    ipRanges List<Property Map>
    Ip-Range. The structure of ip_range block is documented below.
    ipsecLeaseHold Number
    Ipsec-Lease-Hold.
    ipv4DnsServer1 String
    Ipv4-Dns-Server1.
    ipv4DnsServer2 String
    Ipv4-Dns-Server2.
    ipv4DnsServer3 String
    Ipv4-Dns-Server3.
    ipv4EndIp String
    Ipv4-End-Ip.
    ipv4ExcludeRanges List<Property Map>
    Ipv4-Exclude-Range. The structure of ipv4_exclude_range block is documented below.
    ipv4Name String
    Ipv4-Name.
    ipv4Netmask String
    Ipv4-Netmask.
    ipv4SplitExclude String
    Ipv4-Split-Exclude.
    ipv4SplitInclude String
    Ipv4-Split-Include.
    ipv4StartIp String
    Ipv4-Start-Ip.
    ipv4WinsServer1 String
    Ipv4-Wins-Server1.
    ipv4WinsServer2 String
    Ipv4-Wins-Server2.
    l2tp String
    L2Tp. Valid values: disable, enable.
    localGw String
    Local-Gw.
    localid String
    Localid.
    modeCfg String
    Mode-Cfg. Valid values: disable, enable.
    modeCfgIpVersion String
    Mode-Cfg-Ip-Version. Valid values: 4, 6.
    netDevice String
    Net-Device. Valid values: disable, enable.
    networkId Number
    Network-Id.
    networkOverlay String
    Network-Overlay. Valid values: enable, disable.
    objectVpnmgrNodeId String
    an identifier for the resource with format {{fosid}}.
    peergrp String
    Peergrp.
    peerid String
    Peerid.
    peers List<String>
    Peer.
    peertype String
    Peertype. Valid values: any, one, dialup, peer, peergrp.
    protectedSubnets List<Property Map>
    Protected_Subnet. The structure of protected_subnet block is documented below.
    protocol Number
    Protocol.
    publicIp String
    Public-Ip.
    role String
    Role. Valid values: hub, spoke.
    routeOverlap String
    Route-Overlap. Valid values: use-old, use-new, allow.
    scopemembers List<Property Map>
    Scope Member. The structure of scopemember block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    spokeZones List<String>
    Spoke-Zone.
    summaryAddrs List<Property Map>
    Summary_Addr. The structure of summary_addr block is documented below.
    tunnelSearch String
    Tunnel-Search. Valid values: selectors, nexthop.
    unitySupport String
    Unity-Support. Valid values: disable, enable.
    usrgrp String
    Usrgrp.
    vpnInterfacePriority Number
    Vpn-Interface-Priority.
    vpnZones List<String>
    Vpn-Zone.
    vpntables List<String>
    Vpntable.
    xauthtype String
    Xauthtype. Valid values: disable, client, pap, chap, auto.

    Supporting Types

    ObjectVpnmgrNodeIpRange, ObjectVpnmgrNodeIpRangeArgs

    EndIp string
    End-Ip.
    Id double
    Id.
    StartIp string
    Start-Ip.
    EndIp string
    End-Ip.
    Id float64
    Id.
    StartIp string
    Start-Ip.
    endIp String
    End-Ip.
    id Double
    Id.
    startIp String
    Start-Ip.
    endIp string
    End-Ip.
    id number
    Id.
    startIp string
    Start-Ip.
    end_ip str
    End-Ip.
    id float
    Id.
    start_ip str
    Start-Ip.
    endIp String
    End-Ip.
    id Number
    Id.
    startIp String
    Start-Ip.

    ObjectVpnmgrNodeIpv4ExcludeRange, ObjectVpnmgrNodeIpv4ExcludeRangeArgs

    EndIp string
    End-Ip.
    Id double
    an identifier for the resource with format {{fosid}}.
    StartIp string
    Start-Ip.
    EndIp string
    End-Ip.
    Id float64
    an identifier for the resource with format {{fosid}}.
    StartIp string
    Start-Ip.
    endIp String
    End-Ip.
    id Double
    an identifier for the resource with format {{fosid}}.
    startIp String
    Start-Ip.
    endIp string
    End-Ip.
    id number
    an identifier for the resource with format {{fosid}}.
    startIp string
    Start-Ip.
    end_ip str
    End-Ip.
    id float
    an identifier for the resource with format {{fosid}}.
    start_ip str
    Start-Ip.
    endIp String
    End-Ip.
    id Number
    an identifier for the resource with format {{fosid}}.
    startIp String
    Start-Ip.

    ObjectVpnmgrNodeProtectedSubnet, ObjectVpnmgrNodeProtectedSubnetArgs

    Addr string
    Addr.
    Seq double
    Seq.
    Addr string
    Addr.
    Seq float64
    Seq.
    addr String
    Addr.
    seq Double
    Seq.
    addr string
    Addr.
    seq number
    Seq.
    addr str
    Addr.
    seq float
    Seq.
    addr String
    Addr.
    seq Number
    Seq.

    ObjectVpnmgrNodeScopemember, ObjectVpnmgrNodeScopememberArgs

    Name string
    Name.
    Vdom string
    Vdom.
    Name string
    Name.
    Vdom string
    Vdom.
    name String
    Name.
    vdom String
    Vdom.
    name string
    Name.
    vdom string
    Vdom.
    name str
    Name.
    vdom str
    Vdom.
    name String
    Name.
    vdom String
    Vdom.

    ObjectVpnmgrNodeSummaryAddr, ObjectVpnmgrNodeSummaryAddrArgs

    Addr string
    Addr.
    Priority double
    Priority.
    Seq double
    Seq.
    Addr string
    Addr.
    Priority float64
    Priority.
    Seq float64
    Seq.
    addr String
    Addr.
    priority Double
    Priority.
    seq Double
    Seq.
    addr string
    Addr.
    priority number
    Priority.
    seq number
    Seq.
    addr str
    Addr.
    priority float
    Priority.
    seq float
    Seq.
    addr String
    Addr.
    priority Number
    Priority.
    seq Number
    Seq.

    Import

    ObjectVpnmgr Node can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectVpnmgrNode:ObjectVpnmgrNode labelname {{fosid}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev