fortimanager.ObjectVpnmgrNode
Explore with Pulumi AI
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:
- Add
Route string - Add-Route. Valid values:
disable
,enable
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Assign
Ip string - Assign-Ip. Valid values:
disable
,enable
. - Assign
Ip stringFrom - Assign-Ip-From. Valid values:
range
,usrgrp
,dhcp
,name
. - Authpasswds List<string>
- Authpasswd.
- Authusr string
- Authusr.
- Authusrgrp string
- Authusrgrp.
- Auto
Configuration string - Auto-Configuration. Valid values:
disable
,enable
. - Auto
Discovery stringReceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - Auto
Discovery stringSender - Auto-Discovery-Sender. Valid values:
disable
,enable
. - Automatic
Routing string - Automatic_Routing. Valid values:
disable
,enable
. - string
- Banner.
- Default
Gateway string - Default-Gateway.
- Dhcp
Ra stringGiaddr - Dhcp-Ra-Giaddr.
- Dhcp
Server string - Dhcp-Server. Valid values:
disable
,enable
. - Dns
Mode string - Dns-Mode. Valid values:
auto
,manual
. - Dns
Service string - Dns-Service. Valid values:
default
,specify
,local
. - Domain string
- Domain.
- Dynamic
Sort stringSubtable - 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
. - Exchange
Interface stringIp - Exchange-Interface-Ip. Valid values:
disable
,enable
. - Extgw string
- Extgw.
- Extgw
Hubip string - Extgw_Hubip.
- Extgw
P2Per stringNet - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - Extgwip string
- Extgwip.
- Fosid double
- Id.
- Hub
Ifaces List<string> - Hub_Iface.
- Hub
Public stringIp - Hub-Public-Ip.
- Ifaces List<string>
- Iface.
- Ip
Ranges List<ObjectVpnmgr Node Ip Range> - Ip-Range. The structure of
ip_range
block is documented below. - Ipsec
Lease doubleHold - Ipsec-Lease-Hold.
- Ipv4Dns
Server1 string - Ipv4-Dns-Server1.
- Ipv4Dns
Server2 string - Ipv4-Dns-Server2.
- Ipv4Dns
Server3 string - Ipv4-Dns-Server3.
- Ipv4End
Ip string - Ipv4-End-Ip.
- Ipv4Exclude
Ranges List<ObjectVpnmgr Node Ipv4Exclude Range> - Ipv4-Exclude-Range. The structure of
ipv4_exclude_range
block is documented below. - Ipv4Name string
- Ipv4-Name.
- Ipv4Netmask string
- Ipv4-Netmask.
- Ipv4Split
Exclude string - Ipv4-Split-Exclude.
- Ipv4Split
Include string - Ipv4-Split-Include.
- Ipv4Start
Ip string - Ipv4-Start-Ip.
- Ipv4Wins
Server1 string - Ipv4-Wins-Server1.
- Ipv4Wins
Server2 string - Ipv4-Wins-Server2.
- L2tp string
- L2Tp. Valid values:
disable
,enable
. - Local
Gw string - Local-Gw.
- Localid string
- Localid.
- Mode
Cfg string - Mode-Cfg. Valid values:
disable
,enable
. - Mode
Cfg stringIp Version - Mode-Cfg-Ip-Version. Valid values:
4
,6
. - Net
Device string - Net-Device. Valid values:
disable
,enable
. - Network
Id double - Network-Id.
- Network
Overlay string - Network-Overlay. Valid values:
enable
,disable
. - Object
Vpnmgr stringNode Id - 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
. - Protected
Subnets List<ObjectVpnmgr Node Protected Subnet> - Protected_Subnet. The structure of
protected_subnet
block is documented below. - Protocol double
- Protocol.
- Public
Ip string - Public-Ip.
- Role string
- Role. Valid values:
hub
,spoke
. - Route
Overlap string - Route-Overlap. Valid values:
use-old
,use-new
,allow
. - Scopemembers
List<Object
Vpnmgr Node Scopemember> - Scope Member. The structure of
scopemember
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Spoke
Zones List<string> - Spoke-Zone.
- Summary
Addrs List<ObjectVpnmgr Node Summary Addr> - Summary_Addr. The structure of
summary_addr
block is documented below. - Tunnel
Search string - Tunnel-Search. Valid values:
selectors
,nexthop
. - Unity
Support string - Unity-Support. Valid values:
disable
,enable
. - Usrgrp string
- Usrgrp.
- Vpn
Interface doublePriority - Vpn-Interface-Priority.
- Vpn
Zones List<string> - Vpn-Zone.
- Vpntables List<string>
- Vpntable.
- Xauthtype string
- Xauthtype. Valid values:
disable
,client
,pap
,chap
,auto
.
- Add
Route string - Add-Route. Valid values:
disable
,enable
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Assign
Ip string - Assign-Ip. Valid values:
disable
,enable
. - Assign
Ip stringFrom - Assign-Ip-From. Valid values:
range
,usrgrp
,dhcp
,name
. - Authpasswds []string
- Authpasswd.
- Authusr string
- Authusr.
- Authusrgrp string
- Authusrgrp.
- Auto
Configuration string - Auto-Configuration. Valid values:
disable
,enable
. - Auto
Discovery stringReceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - Auto
Discovery stringSender - Auto-Discovery-Sender. Valid values:
disable
,enable
. - Automatic
Routing string - Automatic_Routing. Valid values:
disable
,enable
. - string
- Banner.
- Default
Gateway string - Default-Gateway.
- Dhcp
Ra stringGiaddr - Dhcp-Ra-Giaddr.
- Dhcp
Server string - Dhcp-Server. Valid values:
disable
,enable
. - Dns
Mode string - Dns-Mode. Valid values:
auto
,manual
. - Dns
Service string - Dns-Service. Valid values:
default
,specify
,local
. - Domain string
- Domain.
- Dynamic
Sort stringSubtable - 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
. - Exchange
Interface stringIp - Exchange-Interface-Ip. Valid values:
disable
,enable
. - Extgw string
- Extgw.
- Extgw
Hubip string - Extgw_Hubip.
- Extgw
P2Per stringNet - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - Extgwip string
- Extgwip.
- Fosid float64
- Id.
- Hub
Ifaces []string - Hub_Iface.
- Hub
Public stringIp - Hub-Public-Ip.
- Ifaces []string
- Iface.
- Ip
Ranges []ObjectVpnmgr Node Ip Range Type Args - Ip-Range. The structure of
ip_range
block is documented below. - Ipsec
Lease float64Hold - Ipsec-Lease-Hold.
- Ipv4Dns
Server1 string - Ipv4-Dns-Server1.
- Ipv4Dns
Server2 string - Ipv4-Dns-Server2.
- Ipv4Dns
Server3 string - Ipv4-Dns-Server3.
- Ipv4End
Ip string - Ipv4-End-Ip.
- Ipv4Exclude
Ranges []ObjectVpnmgr Node Ipv4Exclude Range Type Args - Ipv4-Exclude-Range. The structure of
ipv4_exclude_range
block is documented below. - Ipv4Name string
- Ipv4-Name.
- Ipv4Netmask string
- Ipv4-Netmask.
- Ipv4Split
Exclude string - Ipv4-Split-Exclude.
- Ipv4Split
Include string - Ipv4-Split-Include.
- Ipv4Start
Ip string - Ipv4-Start-Ip.
- Ipv4Wins
Server1 string - Ipv4-Wins-Server1.
- Ipv4Wins
Server2 string - Ipv4-Wins-Server2.
- L2tp string
- L2Tp. Valid values:
disable
,enable
. - Local
Gw string - Local-Gw.
- Localid string
- Localid.
- Mode
Cfg string - Mode-Cfg. Valid values:
disable
,enable
. - Mode
Cfg stringIp Version - Mode-Cfg-Ip-Version. Valid values:
4
,6
. - Net
Device string - Net-Device. Valid values:
disable
,enable
. - Network
Id float64 - Network-Id.
- Network
Overlay string - Network-Overlay. Valid values:
enable
,disable
. - Object
Vpnmgr stringNode Id - 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
. - Protected
Subnets []ObjectVpnmgr Node Protected Subnet Type Args - Protected_Subnet. The structure of
protected_subnet
block is documented below. - Protocol float64
- Protocol.
- Public
Ip string - Public-Ip.
- Role string
- Role. Valid values:
hub
,spoke
. - Route
Overlap string - Route-Overlap. Valid values:
use-old
,use-new
,allow
. - Scopemembers
[]Object
Vpnmgr Node Scopemember Args - Scope Member. The structure of
scopemember
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Spoke
Zones []string - Spoke-Zone.
- Summary
Addrs []ObjectVpnmgr Node Summary Addr Type Args - Summary_Addr. The structure of
summary_addr
block is documented below. - Tunnel
Search string - Tunnel-Search. Valid values:
selectors
,nexthop
. - Unity
Support string - Unity-Support. Valid values:
disable
,enable
. - Usrgrp string
- Usrgrp.
- Vpn
Interface float64Priority - Vpn-Interface-Priority.
- Vpn
Zones []string - Vpn-Zone.
- Vpntables []string
- Vpntable.
- Xauthtype string
- Xauthtype. Valid values:
disable
,client
,pap
,chap
,auto
.
- add
Route String - Add-Route. Valid values:
disable
,enable
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - assign
Ip String - Assign-Ip. Valid values:
disable
,enable
. - assign
Ip StringFrom - Assign-Ip-From. Valid values:
range
,usrgrp
,dhcp
,name
. - authpasswds List<String>
- Authpasswd.
- authusr String
- Authusr.
- authusrgrp String
- Authusrgrp.
- auto
Configuration String - Auto-Configuration. Valid values:
disable
,enable
. - auto
Discovery StringReceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - auto
Discovery StringSender - Auto-Discovery-Sender. Valid values:
disable
,enable
. - automatic
Routing String - Automatic_Routing. Valid values:
disable
,enable
. - String
- Banner.
- default
Gateway String - Default-Gateway.
- dhcp
Ra StringGiaddr - Dhcp-Ra-Giaddr.
- dhcp
Server String - Dhcp-Server. Valid values:
disable
,enable
. - dns
Mode String - Dns-Mode. Valid values:
auto
,manual
. - dns
Service String - Dns-Service. Valid values:
default
,specify
,local
. - domain String
- Domain.
- dynamic
Sort StringSubtable - 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
. - exchange
Interface StringIp - Exchange-Interface-Ip. Valid values:
disable
,enable
. - extgw String
- Extgw.
- extgw
Hubip String - Extgw_Hubip.
- extgw
P2Per StringNet - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - extgwip String
- Extgwip.
- fosid Double
- Id.
- hub
Ifaces List<String> - Hub_Iface.
- hub
Public StringIp - Hub-Public-Ip.
- ifaces List<String>
- Iface.
- ip
Ranges List<ObjectVpnmgr Node Ip Range> - Ip-Range. The structure of
ip_range
block is documented below. - ipsec
Lease DoubleHold - Ipsec-Lease-Hold.
- ipv4Dns
Server1 String - Ipv4-Dns-Server1.
- ipv4Dns
Server2 String - Ipv4-Dns-Server2.
- ipv4Dns
Server3 String - Ipv4-Dns-Server3.
- ipv4End
Ip String - Ipv4-End-Ip.
- ipv4Exclude
Ranges List<ObjectVpnmgr Node Ipv4Exclude Range> - Ipv4-Exclude-Range. The structure of
ipv4_exclude_range
block is documented below. - ipv4Name String
- Ipv4-Name.
- ipv4Netmask String
- Ipv4-Netmask.
- ipv4Split
Exclude String - Ipv4-Split-Exclude.
- ipv4Split
Include String - Ipv4-Split-Include.
- ipv4Start
Ip String - Ipv4-Start-Ip.
- ipv4Wins
Server1 String - Ipv4-Wins-Server1.
- ipv4Wins
Server2 String - Ipv4-Wins-Server2.
- l2tp String
- L2Tp. Valid values:
disable
,enable
. - local
Gw String - Local-Gw.
- localid String
- Localid.
- mode
Cfg String - Mode-Cfg. Valid values:
disable
,enable
. - mode
Cfg StringIp Version - Mode-Cfg-Ip-Version. Valid values:
4
,6
. - net
Device String - Net-Device. Valid values:
disable
,enable
. - network
Id Double - Network-Id.
- network
Overlay String - Network-Overlay. Valid values:
enable
,disable
. - object
Vpnmgr StringNode Id - 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
. - protected
Subnets List<ObjectVpnmgr Node Protected Subnet> - Protected_Subnet. The structure of
protected_subnet
block is documented below. - protocol Double
- Protocol.
- public
Ip String - Public-Ip.
- role String
- Role. Valid values:
hub
,spoke
. - route
Overlap String - Route-Overlap. Valid values:
use-old
,use-new
,allow
. - scopemembers
List<Object
Vpnmgr Node Scopemember> - Scope Member. The structure of
scopemember
block is documented below. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spoke
Zones List<String> - Spoke-Zone.
- summary
Addrs List<ObjectVpnmgr Node Summary Addr> - Summary_Addr. The structure of
summary_addr
block is documented below. - tunnel
Search String - Tunnel-Search. Valid values:
selectors
,nexthop
. - unity
Support String - Unity-Support. Valid values:
disable
,enable
. - usrgrp String
- Usrgrp.
- vpn
Interface DoublePriority - Vpn-Interface-Priority.
- vpn
Zones List<String> - Vpn-Zone.
- vpntables List<String>
- Vpntable.
- xauthtype String
- Xauthtype. Valid values:
disable
,client
,pap
,chap
,auto
.
- add
Route string - Add-Route. Valid values:
disable
,enable
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - assign
Ip string - Assign-Ip. Valid values:
disable
,enable
. - assign
Ip stringFrom - Assign-Ip-From. Valid values:
range
,usrgrp
,dhcp
,name
. - authpasswds string[]
- Authpasswd.
- authusr string
- Authusr.
- authusrgrp string
- Authusrgrp.
- auto
Configuration string - Auto-Configuration. Valid values:
disable
,enable
. - auto
Discovery stringReceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - auto
Discovery stringSender - Auto-Discovery-Sender. Valid values:
disable
,enable
. - automatic
Routing string - Automatic_Routing. Valid values:
disable
,enable
. - string
- Banner.
- default
Gateway string - Default-Gateway.
- dhcp
Ra stringGiaddr - Dhcp-Ra-Giaddr.
- dhcp
Server string - Dhcp-Server. Valid values:
disable
,enable
. - dns
Mode string - Dns-Mode. Valid values:
auto
,manual
. - dns
Service string - Dns-Service. Valid values:
default
,specify
,local
. - domain string
- Domain.
- dynamic
Sort stringSubtable - 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
. - exchange
Interface stringIp - Exchange-Interface-Ip. Valid values:
disable
,enable
. - extgw string
- Extgw.
- extgw
Hubip string - Extgw_Hubip.
- extgw
P2Per stringNet - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - extgwip string
- Extgwip.
- fosid number
- Id.
- hub
Ifaces string[] - Hub_Iface.
- hub
Public stringIp - Hub-Public-Ip.
- ifaces string[]
- Iface.
- ip
Ranges ObjectVpnmgr Node Ip Range[] - Ip-Range. The structure of
ip_range
block is documented below. - ipsec
Lease numberHold - Ipsec-Lease-Hold.
- ipv4Dns
Server1 string - Ipv4-Dns-Server1.
- ipv4Dns
Server2 string - Ipv4-Dns-Server2.
- ipv4Dns
Server3 string - Ipv4-Dns-Server3.
- ipv4End
Ip string - Ipv4-End-Ip.
- ipv4Exclude
Ranges ObjectVpnmgr Node Ipv4Exclude Range[] - Ipv4-Exclude-Range. The structure of
ipv4_exclude_range
block is documented below. - ipv4Name string
- Ipv4-Name.
- ipv4Netmask string
- Ipv4-Netmask.
- ipv4Split
Exclude string - Ipv4-Split-Exclude.
- ipv4Split
Include string - Ipv4-Split-Include.
- ipv4Start
Ip string - Ipv4-Start-Ip.
- ipv4Wins
Server1 string - Ipv4-Wins-Server1.
- ipv4Wins
Server2 string - Ipv4-Wins-Server2.
- l2tp string
- L2Tp. Valid values:
disable
,enable
. - local
Gw string - Local-Gw.
- localid string
- Localid.
- mode
Cfg string - Mode-Cfg. Valid values:
disable
,enable
. - mode
Cfg stringIp Version - Mode-Cfg-Ip-Version. Valid values:
4
,6
. - net
Device string - Net-Device. Valid values:
disable
,enable
. - network
Id number - Network-Id.
- network
Overlay string - Network-Overlay. Valid values:
enable
,disable
. - object
Vpnmgr stringNode Id - 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
. - protected
Subnets ObjectVpnmgr Node Protected Subnet[] - Protected_Subnet. The structure of
protected_subnet
block is documented below. - protocol number
- Protocol.
- public
Ip string - Public-Ip.
- role string
- Role. Valid values:
hub
,spoke
. - route
Overlap string - Route-Overlap. Valid values:
use-old
,use-new
,allow
. - scopemembers
Object
Vpnmgr Node Scopemember[] - Scope Member. The structure of
scopemember
block is documented below. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spoke
Zones string[] - Spoke-Zone.
- summary
Addrs ObjectVpnmgr Node Summary Addr[] - Summary_Addr. The structure of
summary_addr
block is documented below. - tunnel
Search string - Tunnel-Search. Valid values:
selectors
,nexthop
. - unity
Support string - Unity-Support. Valid values:
disable
,enable
. - usrgrp string
- Usrgrp.
- vpn
Interface numberPriority - Vpn-Interface-Priority.
- vpn
Zones 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
isadom
, otherwise the value of adom in the provider will be inherited. - assign_
ip str - Assign-Ip. Valid values:
disable
,enable
. - assign_
ip_ strfrom - 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_ strreceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - auto_
discovery_ strsender - 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_ strgiaddr - 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_ strsubtable - 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_ strip - Exchange-Interface-Ip. Valid values:
disable
,enable
. - extgw str
- Extgw.
- extgw_
hubip str - Extgw_Hubip.
- extgw_
p2_ strper_ net - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - extgwip str
- Extgwip.
- fosid float
- Id.
- hub_
ifaces Sequence[str] - Hub_Iface.
- hub_
public_ strip - Hub-Public-Ip.
- ifaces Sequence[str]
- Iface.
- ip_
ranges Sequence[ObjectVpnmgr Node Ip Range Args] - Ip-Range. The structure of
ip_range
block is documented below. - ipsec_
lease_ floathold - Ipsec-Lease-Hold.
- ipv4_
dns_ strserver1 - Ipv4-Dns-Server1.
- ipv4_
dns_ strserver2 - Ipv4-Dns-Server2.
- ipv4_
dns_ strserver3 - Ipv4-Dns-Server3.
- ipv4_
end_ strip - Ipv4-End-Ip.
- ipv4_
exclude_ Sequence[Objectranges Vpnmgr Node Ipv4Exclude Range Args] - 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_ strexclude - Ipv4-Split-Exclude.
- ipv4_
split_ strinclude - Ipv4-Split-Include.
- ipv4_
start_ strip - Ipv4-Start-Ip.
- ipv4_
wins_ strserver1 - Ipv4-Wins-Server1.
- ipv4_
wins_ strserver2 - 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_ strip_ version - 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_ strnode_ id - 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[ObjectVpnmgr Node Protected Subnet Args] - 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[Object
Vpnmgr Node Scopemember Args] - Scope Member. The structure of
scopemember
block is documented below. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spoke_
zones Sequence[str] - Spoke-Zone.
- summary_
addrs Sequence[ObjectVpnmgr Node Summary Addr Args] - 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_ floatpriority - Vpn-Interface-Priority.
- vpn_
zones Sequence[str] - Vpn-Zone.
- vpntables Sequence[str]
- Vpntable.
- xauthtype str
- Xauthtype. Valid values:
disable
,client
,pap
,chap
,auto
.
- add
Route String - Add-Route. Valid values:
disable
,enable
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - assign
Ip String - Assign-Ip. Valid values:
disable
,enable
. - assign
Ip StringFrom - Assign-Ip-From. Valid values:
range
,usrgrp
,dhcp
,name
. - authpasswds List<String>
- Authpasswd.
- authusr String
- Authusr.
- authusrgrp String
- Authusrgrp.
- auto
Configuration String - Auto-Configuration. Valid values:
disable
,enable
. - auto
Discovery StringReceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - auto
Discovery StringSender - Auto-Discovery-Sender. Valid values:
disable
,enable
. - automatic
Routing String - Automatic_Routing. Valid values:
disable
,enable
. - String
- Banner.
- default
Gateway String - Default-Gateway.
- dhcp
Ra StringGiaddr - Dhcp-Ra-Giaddr.
- dhcp
Server String - Dhcp-Server. Valid values:
disable
,enable
. - dns
Mode String - Dns-Mode. Valid values:
auto
,manual
. - dns
Service String - Dns-Service. Valid values:
default
,specify
,local
. - domain String
- Domain.
- dynamic
Sort StringSubtable - 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
. - exchange
Interface StringIp - Exchange-Interface-Ip. Valid values:
disable
,enable
. - extgw String
- Extgw.
- extgw
Hubip String - Extgw_Hubip.
- extgw
P2Per StringNet - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - extgwip String
- Extgwip.
- fosid Number
- Id.
- hub
Ifaces List<String> - Hub_Iface.
- hub
Public StringIp - Hub-Public-Ip.
- ifaces List<String>
- Iface.
- ip
Ranges List<Property Map> - Ip-Range. The structure of
ip_range
block is documented below. - ipsec
Lease NumberHold - Ipsec-Lease-Hold.
- ipv4Dns
Server1 String - Ipv4-Dns-Server1.
- ipv4Dns
Server2 String - Ipv4-Dns-Server2.
- ipv4Dns
Server3 String - Ipv4-Dns-Server3.
- ipv4End
Ip String - Ipv4-End-Ip.
- ipv4Exclude
Ranges List<Property Map> - Ipv4-Exclude-Range. The structure of
ipv4_exclude_range
block is documented below. - ipv4Name String
- Ipv4-Name.
- ipv4Netmask String
- Ipv4-Netmask.
- ipv4Split
Exclude String - Ipv4-Split-Exclude.
- ipv4Split
Include String - Ipv4-Split-Include.
- ipv4Start
Ip String - Ipv4-Start-Ip.
- ipv4Wins
Server1 String - Ipv4-Wins-Server1.
- ipv4Wins
Server2 String - Ipv4-Wins-Server2.
- l2tp String
- L2Tp. Valid values:
disable
,enable
. - local
Gw String - Local-Gw.
- localid String
- Localid.
- mode
Cfg String - Mode-Cfg. Valid values:
disable
,enable
. - mode
Cfg StringIp Version - Mode-Cfg-Ip-Version. Valid values:
4
,6
. - net
Device String - Net-Device. Valid values:
disable
,enable
. - network
Id Number - Network-Id.
- network
Overlay String - Network-Overlay. Valid values:
enable
,disable
. - object
Vpnmgr StringNode Id - 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
. - protected
Subnets List<Property Map> - Protected_Subnet. The structure of
protected_subnet
block is documented below. - protocol Number
- Protocol.
- public
Ip String - Public-Ip.
- role String
- Role. Valid values:
hub
,spoke
. - route
Overlap 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spoke
Zones List<String> - Spoke-Zone.
- summary
Addrs List<Property Map> - Summary_Addr. The structure of
summary_addr
block is documented below. - tunnel
Search String - Tunnel-Search. Valid values:
selectors
,nexthop
. - unity
Support String - Unity-Support. Valid values:
disable
,enable
. - usrgrp String
- Usrgrp.
- vpn
Interface NumberPriority - Vpn-Interface-Priority.
- vpn
Zones 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.
- Add
Route string - Add-Route. Valid values:
disable
,enable
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Assign
Ip string - Assign-Ip. Valid values:
disable
,enable
. - Assign
Ip stringFrom - Assign-Ip-From. Valid values:
range
,usrgrp
,dhcp
,name
. - Authpasswds List<string>
- Authpasswd.
- Authusr string
- Authusr.
- Authusrgrp string
- Authusrgrp.
- Auto
Configuration string - Auto-Configuration. Valid values:
disable
,enable
. - Auto
Discovery stringReceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - Auto
Discovery stringSender - Auto-Discovery-Sender. Valid values:
disable
,enable
. - Automatic
Routing string - Automatic_Routing. Valid values:
disable
,enable
. - string
- Banner.
- Default
Gateway string - Default-Gateway.
- Dhcp
Ra stringGiaddr - Dhcp-Ra-Giaddr.
- Dhcp
Server string - Dhcp-Server. Valid values:
disable
,enable
. - Dns
Mode string - Dns-Mode. Valid values:
auto
,manual
. - Dns
Service string - Dns-Service. Valid values:
default
,specify
,local
. - Domain string
- Domain.
- Dynamic
Sort stringSubtable - 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
. - Exchange
Interface stringIp - Exchange-Interface-Ip. Valid values:
disable
,enable
. - Extgw string
- Extgw.
- Extgw
Hubip string - Extgw_Hubip.
- Extgw
P2Per stringNet - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - Extgwip string
- Extgwip.
- Fosid double
- Id.
- Hub
Ifaces List<string> - Hub_Iface.
- Hub
Public stringIp - Hub-Public-Ip.
- Ifaces List<string>
- Iface.
- Ip
Ranges List<ObjectVpnmgr Node Ip Range> - Ip-Range. The structure of
ip_range
block is documented below. - Ipsec
Lease doubleHold - Ipsec-Lease-Hold.
- Ipv4Dns
Server1 string - Ipv4-Dns-Server1.
- Ipv4Dns
Server2 string - Ipv4-Dns-Server2.
- Ipv4Dns
Server3 string - Ipv4-Dns-Server3.
- Ipv4End
Ip string - Ipv4-End-Ip.
- Ipv4Exclude
Ranges List<ObjectVpnmgr Node Ipv4Exclude Range> - Ipv4-Exclude-Range. The structure of
ipv4_exclude_range
block is documented below. - Ipv4Name string
- Ipv4-Name.
- Ipv4Netmask string
- Ipv4-Netmask.
- Ipv4Split
Exclude string - Ipv4-Split-Exclude.
- Ipv4Split
Include string - Ipv4-Split-Include.
- Ipv4Start
Ip string - Ipv4-Start-Ip.
- Ipv4Wins
Server1 string - Ipv4-Wins-Server1.
- Ipv4Wins
Server2 string - Ipv4-Wins-Server2.
- L2tp string
- L2Tp. Valid values:
disable
,enable
. - Local
Gw string - Local-Gw.
- Localid string
- Localid.
- Mode
Cfg string - Mode-Cfg. Valid values:
disable
,enable
. - Mode
Cfg stringIp Version - Mode-Cfg-Ip-Version. Valid values:
4
,6
. - Net
Device string - Net-Device. Valid values:
disable
,enable
. - Network
Id double - Network-Id.
- Network
Overlay string - Network-Overlay. Valid values:
enable
,disable
. - Object
Vpnmgr stringNode Id - 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
. - Protected
Subnets List<ObjectVpnmgr Node Protected Subnet> - Protected_Subnet. The structure of
protected_subnet
block is documented below. - Protocol double
- Protocol.
- Public
Ip string - Public-Ip.
- Role string
- Role. Valid values:
hub
,spoke
. - Route
Overlap string - Route-Overlap. Valid values:
use-old
,use-new
,allow
. - Scopemembers
List<Object
Vpnmgr Node Scopemember> - Scope Member. The structure of
scopemember
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Spoke
Zones List<string> - Spoke-Zone.
- Summary
Addrs List<ObjectVpnmgr Node Summary Addr> - Summary_Addr. The structure of
summary_addr
block is documented below. - Tunnel
Search string - Tunnel-Search. Valid values:
selectors
,nexthop
. - Unity
Support string - Unity-Support. Valid values:
disable
,enable
. - Usrgrp string
- Usrgrp.
- Vpn
Interface doublePriority - Vpn-Interface-Priority.
- Vpn
Zones List<string> - Vpn-Zone.
- Vpntables List<string>
- Vpntable.
- Xauthtype string
- Xauthtype. Valid values:
disable
,client
,pap
,chap
,auto
.
- Add
Route string - Add-Route. Valid values:
disable
,enable
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Assign
Ip string - Assign-Ip. Valid values:
disable
,enable
. - Assign
Ip stringFrom - Assign-Ip-From. Valid values:
range
,usrgrp
,dhcp
,name
. - Authpasswds []string
- Authpasswd.
- Authusr string
- Authusr.
- Authusrgrp string
- Authusrgrp.
- Auto
Configuration string - Auto-Configuration. Valid values:
disable
,enable
. - Auto
Discovery stringReceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - Auto
Discovery stringSender - Auto-Discovery-Sender. Valid values:
disable
,enable
. - Automatic
Routing string - Automatic_Routing. Valid values:
disable
,enable
. - string
- Banner.
- Default
Gateway string - Default-Gateway.
- Dhcp
Ra stringGiaddr - Dhcp-Ra-Giaddr.
- Dhcp
Server string - Dhcp-Server. Valid values:
disable
,enable
. - Dns
Mode string - Dns-Mode. Valid values:
auto
,manual
. - Dns
Service string - Dns-Service. Valid values:
default
,specify
,local
. - Domain string
- Domain.
- Dynamic
Sort stringSubtable - 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
. - Exchange
Interface stringIp - Exchange-Interface-Ip. Valid values:
disable
,enable
. - Extgw string
- Extgw.
- Extgw
Hubip string - Extgw_Hubip.
- Extgw
P2Per stringNet - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - Extgwip string
- Extgwip.
- Fosid float64
- Id.
- Hub
Ifaces []string - Hub_Iface.
- Hub
Public stringIp - Hub-Public-Ip.
- Ifaces []string
- Iface.
- Ip
Ranges []ObjectVpnmgr Node Ip Range Type Args - Ip-Range. The structure of
ip_range
block is documented below. - Ipsec
Lease float64Hold - Ipsec-Lease-Hold.
- Ipv4Dns
Server1 string - Ipv4-Dns-Server1.
- Ipv4Dns
Server2 string - Ipv4-Dns-Server2.
- Ipv4Dns
Server3 string - Ipv4-Dns-Server3.
- Ipv4End
Ip string - Ipv4-End-Ip.
- Ipv4Exclude
Ranges []ObjectVpnmgr Node Ipv4Exclude Range Type Args - Ipv4-Exclude-Range. The structure of
ipv4_exclude_range
block is documented below. - Ipv4Name string
- Ipv4-Name.
- Ipv4Netmask string
- Ipv4-Netmask.
- Ipv4Split
Exclude string - Ipv4-Split-Exclude.
- Ipv4Split
Include string - Ipv4-Split-Include.
- Ipv4Start
Ip string - Ipv4-Start-Ip.
- Ipv4Wins
Server1 string - Ipv4-Wins-Server1.
- Ipv4Wins
Server2 string - Ipv4-Wins-Server2.
- L2tp string
- L2Tp. Valid values:
disable
,enable
. - Local
Gw string - Local-Gw.
- Localid string
- Localid.
- Mode
Cfg string - Mode-Cfg. Valid values:
disable
,enable
. - Mode
Cfg stringIp Version - Mode-Cfg-Ip-Version. Valid values:
4
,6
. - Net
Device string - Net-Device. Valid values:
disable
,enable
. - Network
Id float64 - Network-Id.
- Network
Overlay string - Network-Overlay. Valid values:
enable
,disable
. - Object
Vpnmgr stringNode Id - 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
. - Protected
Subnets []ObjectVpnmgr Node Protected Subnet Type Args - Protected_Subnet. The structure of
protected_subnet
block is documented below. - Protocol float64
- Protocol.
- Public
Ip string - Public-Ip.
- Role string
- Role. Valid values:
hub
,spoke
. - Route
Overlap string - Route-Overlap. Valid values:
use-old
,use-new
,allow
. - Scopemembers
[]Object
Vpnmgr Node Scopemember Args - Scope Member. The structure of
scopemember
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Spoke
Zones []string - Spoke-Zone.
- Summary
Addrs []ObjectVpnmgr Node Summary Addr Type Args - Summary_Addr. The structure of
summary_addr
block is documented below. - Tunnel
Search string - Tunnel-Search. Valid values:
selectors
,nexthop
. - Unity
Support string - Unity-Support. Valid values:
disable
,enable
. - Usrgrp string
- Usrgrp.
- Vpn
Interface float64Priority - Vpn-Interface-Priority.
- Vpn
Zones []string - Vpn-Zone.
- Vpntables []string
- Vpntable.
- Xauthtype string
- Xauthtype. Valid values:
disable
,client
,pap
,chap
,auto
.
- add
Route String - Add-Route. Valid values:
disable
,enable
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - assign
Ip String - Assign-Ip. Valid values:
disable
,enable
. - assign
Ip StringFrom - Assign-Ip-From. Valid values:
range
,usrgrp
,dhcp
,name
. - authpasswds List<String>
- Authpasswd.
- authusr String
- Authusr.
- authusrgrp String
- Authusrgrp.
- auto
Configuration String - Auto-Configuration. Valid values:
disable
,enable
. - auto
Discovery StringReceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - auto
Discovery StringSender - Auto-Discovery-Sender. Valid values:
disable
,enable
. - automatic
Routing String - Automatic_Routing. Valid values:
disable
,enable
. - String
- Banner.
- default
Gateway String - Default-Gateway.
- dhcp
Ra StringGiaddr - Dhcp-Ra-Giaddr.
- dhcp
Server String - Dhcp-Server. Valid values:
disable
,enable
. - dns
Mode String - Dns-Mode. Valid values:
auto
,manual
. - dns
Service String - Dns-Service. Valid values:
default
,specify
,local
. - domain String
- Domain.
- dynamic
Sort StringSubtable - 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
. - exchange
Interface StringIp - Exchange-Interface-Ip. Valid values:
disable
,enable
. - extgw String
- Extgw.
- extgw
Hubip String - Extgw_Hubip.
- extgw
P2Per StringNet - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - extgwip String
- Extgwip.
- fosid Double
- Id.
- hub
Ifaces List<String> - Hub_Iface.
- hub
Public StringIp - Hub-Public-Ip.
- ifaces List<String>
- Iface.
- ip
Ranges List<ObjectVpnmgr Node Ip Range> - Ip-Range. The structure of
ip_range
block is documented below. - ipsec
Lease DoubleHold - Ipsec-Lease-Hold.
- ipv4Dns
Server1 String - Ipv4-Dns-Server1.
- ipv4Dns
Server2 String - Ipv4-Dns-Server2.
- ipv4Dns
Server3 String - Ipv4-Dns-Server3.
- ipv4End
Ip String - Ipv4-End-Ip.
- ipv4Exclude
Ranges List<ObjectVpnmgr Node Ipv4Exclude Range> - Ipv4-Exclude-Range. The structure of
ipv4_exclude_range
block is documented below. - ipv4Name String
- Ipv4-Name.
- ipv4Netmask String
- Ipv4-Netmask.
- ipv4Split
Exclude String - Ipv4-Split-Exclude.
- ipv4Split
Include String - Ipv4-Split-Include.
- ipv4Start
Ip String - Ipv4-Start-Ip.
- ipv4Wins
Server1 String - Ipv4-Wins-Server1.
- ipv4Wins
Server2 String - Ipv4-Wins-Server2.
- l2tp String
- L2Tp. Valid values:
disable
,enable
. - local
Gw String - Local-Gw.
- localid String
- Localid.
- mode
Cfg String - Mode-Cfg. Valid values:
disable
,enable
. - mode
Cfg StringIp Version - Mode-Cfg-Ip-Version. Valid values:
4
,6
. - net
Device String - Net-Device. Valid values:
disable
,enable
. - network
Id Double - Network-Id.
- network
Overlay String - Network-Overlay. Valid values:
enable
,disable
. - object
Vpnmgr StringNode Id - 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
. - protected
Subnets List<ObjectVpnmgr Node Protected Subnet> - Protected_Subnet. The structure of
protected_subnet
block is documented below. - protocol Double
- Protocol.
- public
Ip String - Public-Ip.
- role String
- Role. Valid values:
hub
,spoke
. - route
Overlap String - Route-Overlap. Valid values:
use-old
,use-new
,allow
. - scopemembers
List<Object
Vpnmgr Node Scopemember> - Scope Member. The structure of
scopemember
block is documented below. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spoke
Zones List<String> - Spoke-Zone.
- summary
Addrs List<ObjectVpnmgr Node Summary Addr> - Summary_Addr. The structure of
summary_addr
block is documented below. - tunnel
Search String - Tunnel-Search. Valid values:
selectors
,nexthop
. - unity
Support String - Unity-Support. Valid values:
disable
,enable
. - usrgrp String
- Usrgrp.
- vpn
Interface DoublePriority - Vpn-Interface-Priority.
- vpn
Zones List<String> - Vpn-Zone.
- vpntables List<String>
- Vpntable.
- xauthtype String
- Xauthtype. Valid values:
disable
,client
,pap
,chap
,auto
.
- add
Route string - Add-Route. Valid values:
disable
,enable
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - assign
Ip string - Assign-Ip. Valid values:
disable
,enable
. - assign
Ip stringFrom - Assign-Ip-From. Valid values:
range
,usrgrp
,dhcp
,name
. - authpasswds string[]
- Authpasswd.
- authusr string
- Authusr.
- authusrgrp string
- Authusrgrp.
- auto
Configuration string - Auto-Configuration. Valid values:
disable
,enable
. - auto
Discovery stringReceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - auto
Discovery stringSender - Auto-Discovery-Sender. Valid values:
disable
,enable
. - automatic
Routing string - Automatic_Routing. Valid values:
disable
,enable
. - string
- Banner.
- default
Gateway string - Default-Gateway.
- dhcp
Ra stringGiaddr - Dhcp-Ra-Giaddr.
- dhcp
Server string - Dhcp-Server. Valid values:
disable
,enable
. - dns
Mode string - Dns-Mode. Valid values:
auto
,manual
. - dns
Service string - Dns-Service. Valid values:
default
,specify
,local
. - domain string
- Domain.
- dynamic
Sort stringSubtable - 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
. - exchange
Interface stringIp - Exchange-Interface-Ip. Valid values:
disable
,enable
. - extgw string
- Extgw.
- extgw
Hubip string - Extgw_Hubip.
- extgw
P2Per stringNet - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - extgwip string
- Extgwip.
- fosid number
- Id.
- hub
Ifaces string[] - Hub_Iface.
- hub
Public stringIp - Hub-Public-Ip.
- ifaces string[]
- Iface.
- ip
Ranges ObjectVpnmgr Node Ip Range[] - Ip-Range. The structure of
ip_range
block is documented below. - ipsec
Lease numberHold - Ipsec-Lease-Hold.
- ipv4Dns
Server1 string - Ipv4-Dns-Server1.
- ipv4Dns
Server2 string - Ipv4-Dns-Server2.
- ipv4Dns
Server3 string - Ipv4-Dns-Server3.
- ipv4End
Ip string - Ipv4-End-Ip.
- ipv4Exclude
Ranges ObjectVpnmgr Node Ipv4Exclude Range[] - Ipv4-Exclude-Range. The structure of
ipv4_exclude_range
block is documented below. - ipv4Name string
- Ipv4-Name.
- ipv4Netmask string
- Ipv4-Netmask.
- ipv4Split
Exclude string - Ipv4-Split-Exclude.
- ipv4Split
Include string - Ipv4-Split-Include.
- ipv4Start
Ip string - Ipv4-Start-Ip.
- ipv4Wins
Server1 string - Ipv4-Wins-Server1.
- ipv4Wins
Server2 string - Ipv4-Wins-Server2.
- l2tp string
- L2Tp. Valid values:
disable
,enable
. - local
Gw string - Local-Gw.
- localid string
- Localid.
- mode
Cfg string - Mode-Cfg. Valid values:
disable
,enable
. - mode
Cfg stringIp Version - Mode-Cfg-Ip-Version. Valid values:
4
,6
. - net
Device string - Net-Device. Valid values:
disable
,enable
. - network
Id number - Network-Id.
- network
Overlay string - Network-Overlay. Valid values:
enable
,disable
. - object
Vpnmgr stringNode Id - 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
. - protected
Subnets ObjectVpnmgr Node Protected Subnet[] - Protected_Subnet. The structure of
protected_subnet
block is documented below. - protocol number
- Protocol.
- public
Ip string - Public-Ip.
- role string
- Role. Valid values:
hub
,spoke
. - route
Overlap string - Route-Overlap. Valid values:
use-old
,use-new
,allow
. - scopemembers
Object
Vpnmgr Node Scopemember[] - Scope Member. The structure of
scopemember
block is documented below. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spoke
Zones string[] - Spoke-Zone.
- summary
Addrs ObjectVpnmgr Node Summary Addr[] - Summary_Addr. The structure of
summary_addr
block is documented below. - tunnel
Search string - Tunnel-Search. Valid values:
selectors
,nexthop
. - unity
Support string - Unity-Support. Valid values:
disable
,enable
. - usrgrp string
- Usrgrp.
- vpn
Interface numberPriority - Vpn-Interface-Priority.
- vpn
Zones 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
isadom
, otherwise the value of adom in the provider will be inherited. - assign_
ip str - Assign-Ip. Valid values:
disable
,enable
. - assign_
ip_ strfrom - 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_ strreceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - auto_
discovery_ strsender - 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_ strgiaddr - 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_ strsubtable - 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_ strip - Exchange-Interface-Ip. Valid values:
disable
,enable
. - extgw str
- Extgw.
- extgw_
hubip str - Extgw_Hubip.
- extgw_
p2_ strper_ net - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - extgwip str
- Extgwip.
- fosid float
- Id.
- hub_
ifaces Sequence[str] - Hub_Iface.
- hub_
public_ strip - Hub-Public-Ip.
- ifaces Sequence[str]
- Iface.
- ip_
ranges Sequence[ObjectVpnmgr Node Ip Range Args] - Ip-Range. The structure of
ip_range
block is documented below. - ipsec_
lease_ floathold - Ipsec-Lease-Hold.
- ipv4_
dns_ strserver1 - Ipv4-Dns-Server1.
- ipv4_
dns_ strserver2 - Ipv4-Dns-Server2.
- ipv4_
dns_ strserver3 - Ipv4-Dns-Server3.
- ipv4_
end_ strip - Ipv4-End-Ip.
- ipv4_
exclude_ Sequence[Objectranges Vpnmgr Node Ipv4Exclude Range Args] - 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_ strexclude - Ipv4-Split-Exclude.
- ipv4_
split_ strinclude - Ipv4-Split-Include.
- ipv4_
start_ strip - Ipv4-Start-Ip.
- ipv4_
wins_ strserver1 - Ipv4-Wins-Server1.
- ipv4_
wins_ strserver2 - 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_ strip_ version - 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_ strnode_ id - 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[ObjectVpnmgr Node Protected Subnet Args] - 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[Object
Vpnmgr Node Scopemember Args] - Scope Member. The structure of
scopemember
block is documented below. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spoke_
zones Sequence[str] - Spoke-Zone.
- summary_
addrs Sequence[ObjectVpnmgr Node Summary Addr Args] - 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_ floatpriority - Vpn-Interface-Priority.
- vpn_
zones Sequence[str] - Vpn-Zone.
- vpntables Sequence[str]
- Vpntable.
- xauthtype str
- Xauthtype. Valid values:
disable
,client
,pap
,chap
,auto
.
- add
Route String - Add-Route. Valid values:
disable
,enable
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - assign
Ip String - Assign-Ip. Valid values:
disable
,enable
. - assign
Ip StringFrom - Assign-Ip-From. Valid values:
range
,usrgrp
,dhcp
,name
. - authpasswds List<String>
- Authpasswd.
- authusr String
- Authusr.
- authusrgrp String
- Authusrgrp.
- auto
Configuration String - Auto-Configuration. Valid values:
disable
,enable
. - auto
Discovery StringReceiver - Auto-Discovery-Receiver. Valid values:
disable
,enable
. - auto
Discovery StringSender - Auto-Discovery-Sender. Valid values:
disable
,enable
. - automatic
Routing String - Automatic_Routing. Valid values:
disable
,enable
. - String
- Banner.
- default
Gateway String - Default-Gateway.
- dhcp
Ra StringGiaddr - Dhcp-Ra-Giaddr.
- dhcp
Server String - Dhcp-Server. Valid values:
disable
,enable
. - dns
Mode String - Dns-Mode. Valid values:
auto
,manual
. - dns
Service String - Dns-Service. Valid values:
default
,specify
,local
. - domain String
- Domain.
- dynamic
Sort StringSubtable - 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
. - exchange
Interface StringIp - Exchange-Interface-Ip. Valid values:
disable
,enable
. - extgw String
- Extgw.
- extgw
Hubip String - Extgw_Hubip.
- extgw
P2Per StringNet - Extgw_P2_Per_Net. Valid values:
disable
,enable
. - extgwip String
- Extgwip.
- fosid Number
- Id.
- hub
Ifaces List<String> - Hub_Iface.
- hub
Public StringIp - Hub-Public-Ip.
- ifaces List<String>
- Iface.
- ip
Ranges List<Property Map> - Ip-Range. The structure of
ip_range
block is documented below. - ipsec
Lease NumberHold - Ipsec-Lease-Hold.
- ipv4Dns
Server1 String - Ipv4-Dns-Server1.
- ipv4Dns
Server2 String - Ipv4-Dns-Server2.
- ipv4Dns
Server3 String - Ipv4-Dns-Server3.
- ipv4End
Ip String - Ipv4-End-Ip.
- ipv4Exclude
Ranges List<Property Map> - Ipv4-Exclude-Range. The structure of
ipv4_exclude_range
block is documented below. - ipv4Name String
- Ipv4-Name.
- ipv4Netmask String
- Ipv4-Netmask.
- ipv4Split
Exclude String - Ipv4-Split-Exclude.
- ipv4Split
Include String - Ipv4-Split-Include.
- ipv4Start
Ip String - Ipv4-Start-Ip.
- ipv4Wins
Server1 String - Ipv4-Wins-Server1.
- ipv4Wins
Server2 String - Ipv4-Wins-Server2.
- l2tp String
- L2Tp. Valid values:
disable
,enable
. - local
Gw String - Local-Gw.
- localid String
- Localid.
- mode
Cfg String - Mode-Cfg. Valid values:
disable
,enable
. - mode
Cfg StringIp Version - Mode-Cfg-Ip-Version. Valid values:
4
,6
. - net
Device String - Net-Device. Valid values:
disable
,enable
. - network
Id Number - Network-Id.
- network
Overlay String - Network-Overlay. Valid values:
enable
,disable
. - object
Vpnmgr StringNode Id - 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
. - protected
Subnets List<Property Map> - Protected_Subnet. The structure of
protected_subnet
block is documented below. - protocol Number
- Protocol.
- public
Ip String - Public-Ip.
- role String
- Role. Valid values:
hub
,spoke
. - route
Overlap 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spoke
Zones List<String> - Spoke-Zone.
- summary
Addrs List<Property Map> - Summary_Addr. The structure of
summary_addr
block is documented below. - tunnel
Search String - Tunnel-Search. Valid values:
selectors
,nexthop
. - unity
Support String - Unity-Support. Valid values:
disable
,enable
. - usrgrp String
- Usrgrp.
- vpn
Interface NumberPriority - Vpn-Interface-Priority.
- vpn
Zones List<String> - Vpn-Zone.
- vpntables List<String>
- Vpntable.
- xauthtype String
- Xauthtype. Valid values:
disable
,client
,pap
,chap
,auto
.
Supporting Types
ObjectVpnmgrNodeIpRange, ObjectVpnmgrNodeIpRangeArgs
ObjectVpnmgrNodeIpv4ExcludeRange, ObjectVpnmgrNodeIpv4ExcludeRangeArgs
ObjectVpnmgrNodeProtectedSubnet, ObjectVpnmgrNodeProtectedSubnetArgs
ObjectVpnmgrNodeScopemember, ObjectVpnmgrNodeScopememberArgs
ObjectVpnmgrNodeSummaryAddr, ObjectVpnmgrNodeSummaryAddrArgs
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.