fortimanager.ObjectExtendercontrollerExtenderprofileLanextension
Explore with Pulumi AI
FortiExtender lan extension configuration.
This resource is a sub resource for variable
lan_extension
of resourcefortimanager.ObjectExtendercontrollerExtenderprofile
. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
backhaul
:fortimanager.ObjectExtendercontrollerExtenderprofileLanextensionBackhaul
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectExtendercontrollerExtenderprofile = new fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile", {});
const trnameObjectExtendercontrollerExtenderprofileLanextension = new fortimanager.ObjectExtendercontrollerExtenderprofileLanextension("trnameObjectExtendercontrollerExtenderprofileLanextension", {
backhaulInterface: "port1",
backhaulIp: "34.5.6.12",
linkLoadbalance: "loadbalance",
extenderProfile: trnameObjectExtendercontrollerExtenderprofile.name,
}, {
dependsOn: [trnameObjectExtendercontrollerExtenderprofile],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_extendercontroller_extenderprofile = fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile")
trname_object_extendercontroller_extenderprofile_lanextension = fortimanager.ObjectExtendercontrollerExtenderprofileLanextension("trnameObjectExtendercontrollerExtenderprofileLanextension",
backhaul_interface="port1",
backhaul_ip="34.5.6.12",
link_loadbalance="loadbalance",
extender_profile=trname_object_extendercontroller_extenderprofile.name,
opts = pulumi.ResourceOptions(depends_on=[trname_object_extendercontroller_extenderprofile]))
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 {
trnameObjectExtendercontrollerExtenderprofile, err := fortimanager.NewObjectExtendercontrollerExtenderprofile(ctx, "trnameObjectExtendercontrollerExtenderprofile", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectExtendercontrollerExtenderprofileLanextension(ctx, "trnameObjectExtendercontrollerExtenderprofileLanextension", &fortimanager.ObjectExtendercontrollerExtenderprofileLanextensionArgs{
BackhaulInterface: pulumi.String("port1"),
BackhaulIp: pulumi.String("34.5.6.12"),
LinkLoadbalance: pulumi.String("loadbalance"),
ExtenderProfile: trnameObjectExtendercontrollerExtenderprofile.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectExtendercontrollerExtenderprofile,
}))
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 trnameObjectExtendercontrollerExtenderprofile = new Fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile");
var trnameObjectExtendercontrollerExtenderprofileLanextension = new Fortimanager.ObjectExtendercontrollerExtenderprofileLanextension("trnameObjectExtendercontrollerExtenderprofileLanextension", new()
{
BackhaulInterface = "port1",
BackhaulIp = "34.5.6.12",
LinkLoadbalance = "loadbalance",
ExtenderProfile = trnameObjectExtendercontrollerExtenderprofile.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectExtendercontrollerExtenderprofile,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofile;
import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofileLanextension;
import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofileLanextensionArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trnameObjectExtendercontrollerExtenderprofile = new ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile");
var trnameObjectExtendercontrollerExtenderprofileLanextension = new ObjectExtendercontrollerExtenderprofileLanextension("trnameObjectExtendercontrollerExtenderprofileLanextension", ObjectExtendercontrollerExtenderprofileLanextensionArgs.builder()
.backhaulInterface("port1")
.backhaulIp("34.5.6.12")
.linkLoadbalance("loadbalance")
.extenderProfile(trnameObjectExtendercontrollerExtenderprofile.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectExtendercontrollerExtenderprofile)
.build());
}
}
resources:
trnameObjectExtendercontrollerExtenderprofileLanextension:
type: fortimanager:ObjectExtendercontrollerExtenderprofileLanextension
properties:
backhaulInterface: port1
backhaulIp: 34.5.6.12
linkLoadbalance: loadbalance
extenderProfile: ${trnameObjectExtendercontrollerExtenderprofile.name}
options:
dependsOn:
- ${trnameObjectExtendercontrollerExtenderprofile}
trnameObjectExtendercontrollerExtenderprofile:
type: fortimanager:ObjectExtendercontrollerExtenderprofile
Create ObjectExtendercontrollerExtenderprofileLanextension Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectExtendercontrollerExtenderprofileLanextension(name: string, args: ObjectExtendercontrollerExtenderprofileLanextensionArgs, opts?: CustomResourceOptions);
@overload
def ObjectExtendercontrollerExtenderprofileLanextension(resource_name: str,
args: ObjectExtendercontrollerExtenderprofileLanextensionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectExtendercontrollerExtenderprofileLanextension(resource_name: str,
opts: Optional[ResourceOptions] = None,
extender_profile: Optional[str] = None,
adom: Optional[str] = None,
backhaul_interface: Optional[str] = None,
backhaul_ip: Optional[str] = None,
backhauls: Optional[Sequence[ObjectExtendercontrollerExtenderprofileLanextensionBackhaulArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
ipsec_tunnel: Optional[str] = None,
link_loadbalance: Optional[str] = None,
object_extendercontroller_extenderprofile_lanextension_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectExtendercontrollerExtenderprofileLanextension(ctx *Context, name string, args ObjectExtendercontrollerExtenderprofileLanextensionArgs, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileLanextension, error)
public ObjectExtendercontrollerExtenderprofileLanextension(string name, ObjectExtendercontrollerExtenderprofileLanextensionArgs args, CustomResourceOptions? opts = null)
public ObjectExtendercontrollerExtenderprofileLanextension(String name, ObjectExtendercontrollerExtenderprofileLanextensionArgs args)
public ObjectExtendercontrollerExtenderprofileLanextension(String name, ObjectExtendercontrollerExtenderprofileLanextensionArgs args, CustomResourceOptions options)
type: fortimanager:ObjectExtendercontrollerExtenderprofileLanextension
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 ObjectExtendercontrollerExtenderprofileLanextensionArgs
- 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 ObjectExtendercontrollerExtenderprofileLanextensionArgs
- 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 ObjectExtendercontrollerExtenderprofileLanextensionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectExtendercontrollerExtenderprofileLanextensionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectExtendercontrollerExtenderprofileLanextensionArgs
- 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 objectExtendercontrollerExtenderprofileLanextensionResource = new Fortimanager.ObjectExtendercontrollerExtenderprofileLanextension("objectExtendercontrollerExtenderprofileLanextensionResource", new()
{
ExtenderProfile = "string",
Adom = "string",
BackhaulInterface = "string",
BackhaulIp = "string",
Backhauls = new[]
{
new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileLanextensionBackhaulArgs
{
Name = "string",
Port = "string",
Role = "string",
Weight = 0,
},
},
DynamicSortSubtable = "string",
IpsecTunnel = "string",
LinkLoadbalance = "string",
ObjectExtendercontrollerExtenderprofileLanextensionId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectExtendercontrollerExtenderprofileLanextension(ctx, "objectExtendercontrollerExtenderprofileLanextensionResource", &fortimanager.ObjectExtendercontrollerExtenderprofileLanextensionArgs{
ExtenderProfile: pulumi.String("string"),
Adom: pulumi.String("string"),
BackhaulInterface: pulumi.String("string"),
BackhaulIp: pulumi.String("string"),
Backhauls: .ObjectExtendercontrollerExtenderprofileLanextensionBackhaulTypeArray{
&.ObjectExtendercontrollerExtenderprofileLanextensionBackhaulTypeArgs{
Name: pulumi.String("string"),
Port: pulumi.String("string"),
Role: pulumi.String("string"),
Weight: pulumi.Float64(0),
},
},
DynamicSortSubtable: pulumi.String("string"),
IpsecTunnel: pulumi.String("string"),
LinkLoadbalance: pulumi.String("string"),
ObjectExtendercontrollerExtenderprofileLanextensionId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectExtendercontrollerExtenderprofileLanextensionResource = new ObjectExtendercontrollerExtenderprofileLanextension("objectExtendercontrollerExtenderprofileLanextensionResource", ObjectExtendercontrollerExtenderprofileLanextensionArgs.builder()
.extenderProfile("string")
.adom("string")
.backhaulInterface("string")
.backhaulIp("string")
.backhauls(ObjectExtendercontrollerExtenderprofileLanextensionBackhaulArgs.builder()
.name("string")
.port("string")
.role("string")
.weight(0)
.build())
.dynamicSortSubtable("string")
.ipsecTunnel("string")
.linkLoadbalance("string")
.objectExtendercontrollerExtenderprofileLanextensionId("string")
.scopetype("string")
.build());
object_extendercontroller_extenderprofile_lanextension_resource = fortimanager.ObjectExtendercontrollerExtenderprofileLanextension("objectExtendercontrollerExtenderprofileLanextensionResource",
extender_profile="string",
adom="string",
backhaul_interface="string",
backhaul_ip="string",
backhauls=[{
"name": "string",
"port": "string",
"role": "string",
"weight": 0,
}],
dynamic_sort_subtable="string",
ipsec_tunnel="string",
link_loadbalance="string",
object_extendercontroller_extenderprofile_lanextension_id="string",
scopetype="string")
const objectExtendercontrollerExtenderprofileLanextensionResource = new fortimanager.ObjectExtendercontrollerExtenderprofileLanextension("objectExtendercontrollerExtenderprofileLanextensionResource", {
extenderProfile: "string",
adom: "string",
backhaulInterface: "string",
backhaulIp: "string",
backhauls: [{
name: "string",
port: "string",
role: "string",
weight: 0,
}],
dynamicSortSubtable: "string",
ipsecTunnel: "string",
linkLoadbalance: "string",
objectExtendercontrollerExtenderprofileLanextensionId: "string",
scopetype: "string",
});
type: fortimanager:ObjectExtendercontrollerExtenderprofileLanextension
properties:
adom: string
backhaulInterface: string
backhaulIp: string
backhauls:
- name: string
port: string
role: string
weight: 0
dynamicSortSubtable: string
extenderProfile: string
ipsecTunnel: string
linkLoadbalance: string
objectExtendercontrollerExtenderprofileLanextensionId: string
scopetype: string
ObjectExtendercontrollerExtenderprofileLanextension 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 ObjectExtendercontrollerExtenderprofileLanextension resource accepts the following input properties:
- Extender
Profile string - Extender Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Backhaul
Interface string - IPsec phase1 interface.
- Backhaul
Ip string - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- Backhauls
List<Object
Extendercontroller Extenderprofile Lanextension Backhaul> - Backhaul. The structure of
backhaul
block is documented below. - 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.
- Ipsec
Tunnel string - IPsec tunnel name.
- Link
Loadbalance string - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - Object
Extendercontroller stringExtenderprofile Lanextension Id - an identifier for the resource.
- 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
.
- Extender
Profile string - Extender Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Backhaul
Interface string - IPsec phase1 interface.
- Backhaul
Ip string - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- Backhauls
[]Object
Extendercontroller Extenderprofile Lanextension Backhaul Type Args - Backhaul. The structure of
backhaul
block is documented below. - 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.
- Ipsec
Tunnel string - IPsec tunnel name.
- Link
Loadbalance string - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - Object
Extendercontroller stringExtenderprofile Lanextension Id - an identifier for the resource.
- 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
.
- extender
Profile String - Extender Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - backhaul
Interface String - IPsec phase1 interface.
- backhaul
Ip String - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- backhauls
List<Object
Extendercontroller Extenderprofile Lanextension Backhaul> - Backhaul. The structure of
backhaul
block is documented below. - 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.
- ipsec
Tunnel String - IPsec tunnel name.
- link
Loadbalance String - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - object
Extendercontroller StringExtenderprofile Lanextension Id - an identifier for the resource.
- 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
.
- extender
Profile string - Extender Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - backhaul
Interface string - IPsec phase1 interface.
- backhaul
Ip string - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- backhauls
Object
Extendercontroller Extenderprofile Lanextension Backhaul[] - Backhaul. The structure of
backhaul
block is documented below. - 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.
- ipsec
Tunnel string - IPsec tunnel name.
- link
Loadbalance string - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - object
Extendercontroller stringExtenderprofile Lanextension Id - an identifier for the resource.
- 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
.
- extender_
profile str - Extender Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - backhaul_
interface str - IPsec phase1 interface.
- backhaul_
ip str - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- backhauls
Sequence[Object
Extendercontroller Extenderprofile Lanextension Backhaul Args] - Backhaul. The structure of
backhaul
block is documented below. - 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.
- ipsec_
tunnel str - IPsec tunnel name.
- link_
loadbalance str - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - object_
extendercontroller_ strextenderprofile_ lanextension_ id - an identifier for the resource.
- 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
.
- extender
Profile String - Extender Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - backhaul
Interface String - IPsec phase1 interface.
- backhaul
Ip String - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- backhauls List<Property Map>
- Backhaul. The structure of
backhaul
block is documented below. - 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.
- ipsec
Tunnel String - IPsec tunnel name.
- link
Loadbalance String - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - object
Extendercontroller StringExtenderprofile Lanextension Id - an identifier for the resource.
- 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
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectExtendercontrollerExtenderprofileLanextension 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 ObjectExtendercontrollerExtenderprofileLanextension Resource
Get an existing ObjectExtendercontrollerExtenderprofileLanextension 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?: ObjectExtendercontrollerExtenderprofileLanextensionState, opts?: CustomResourceOptions): ObjectExtendercontrollerExtenderprofileLanextension
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
backhaul_interface: Optional[str] = None,
backhaul_ip: Optional[str] = None,
backhauls: Optional[Sequence[ObjectExtendercontrollerExtenderprofileLanextensionBackhaulArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
extender_profile: Optional[str] = None,
ipsec_tunnel: Optional[str] = None,
link_loadbalance: Optional[str] = None,
object_extendercontroller_extenderprofile_lanextension_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectExtendercontrollerExtenderprofileLanextension
func GetObjectExtendercontrollerExtenderprofileLanextension(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerExtenderprofileLanextensionState, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileLanextension, error)
public static ObjectExtendercontrollerExtenderprofileLanextension Get(string name, Input<string> id, ObjectExtendercontrollerExtenderprofileLanextensionState? state, CustomResourceOptions? opts = null)
public static ObjectExtendercontrollerExtenderprofileLanextension get(String name, Output<String> id, ObjectExtendercontrollerExtenderprofileLanextensionState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectExtendercontrollerExtenderprofileLanextension 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Backhaul
Interface string - IPsec phase1 interface.
- Backhaul
Ip string - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- Backhauls
List<Object
Extendercontroller Extenderprofile Lanextension Backhaul> - Backhaul. The structure of
backhaul
block is documented below. - 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.
- Extender
Profile string - Extender Profile.
- Ipsec
Tunnel string - IPsec tunnel name.
- Link
Loadbalance string - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - Object
Extendercontroller stringExtenderprofile Lanextension Id - an identifier for the resource.
- 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
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Backhaul
Interface string - IPsec phase1 interface.
- Backhaul
Ip string - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- Backhauls
[]Object
Extendercontroller Extenderprofile Lanextension Backhaul Type Args - Backhaul. The structure of
backhaul
block is documented below. - 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.
- Extender
Profile string - Extender Profile.
- Ipsec
Tunnel string - IPsec tunnel name.
- Link
Loadbalance string - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - Object
Extendercontroller stringExtenderprofile Lanextension Id - an identifier for the resource.
- 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - backhaul
Interface String - IPsec phase1 interface.
- backhaul
Ip String - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- backhauls
List<Object
Extendercontroller Extenderprofile Lanextension Backhaul> - Backhaul. The structure of
backhaul
block is documented below. - 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.
- extender
Profile String - Extender Profile.
- ipsec
Tunnel String - IPsec tunnel name.
- link
Loadbalance String - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - object
Extendercontroller StringExtenderprofile Lanextension Id - an identifier for the resource.
- 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
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - backhaul
Interface string - IPsec phase1 interface.
- backhaul
Ip string - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- backhauls
Object
Extendercontroller Extenderprofile Lanextension Backhaul[] - Backhaul. The structure of
backhaul
block is documented below. - 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.
- extender
Profile string - Extender Profile.
- ipsec
Tunnel string - IPsec tunnel name.
- link
Loadbalance string - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - object
Extendercontroller stringExtenderprofile Lanextension Id - an identifier for the resource.
- 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
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - backhaul_
interface str - IPsec phase1 interface.
- backhaul_
ip str - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- backhauls
Sequence[Object
Extendercontroller Extenderprofile Lanextension Backhaul Args] - Backhaul. The structure of
backhaul
block is documented below. - 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.
- extender_
profile str - Extender Profile.
- ipsec_
tunnel str - IPsec tunnel name.
- link_
loadbalance str - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - object_
extendercontroller_ strextenderprofile_ lanextension_ id - an identifier for the resource.
- 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - backhaul
Interface String - IPsec phase1 interface.
- backhaul
Ip String - IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
- backhauls List<Property Map>
- Backhaul. The structure of
backhaul
block is documented below. - 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.
- extender
Profile String - Extender Profile.
- ipsec
Tunnel String - IPsec tunnel name.
- link
Loadbalance String - LAN extension link load balance strategy. Valid values:
activebackup
,loadbalance
. - object
Extendercontroller StringExtenderprofile Lanextension Id - an identifier for the resource.
- 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
.
Supporting Types
ObjectExtendercontrollerExtenderprofileLanextensionBackhaul, ObjectExtendercontrollerExtenderprofileLanextensionBackhaulArgs
Import
ObjectExtenderController ExtenderProfileLanExtension can be imported using any of these accepted formats:
Set import_options = [“extender_profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectExtendercontrollerExtenderprofileLanextension:ObjectExtendercontrollerExtenderprofileLanextension labelname ObjectExtenderControllerExtenderProfileLanExtension
$ 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.