1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectExtendercontrollerExtenderprofileLanextension
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectExtendercontrollerExtenderprofileLanextension

Explore with Pulumi AI

FortiExtender lan extension configuration.

This resource is a sub resource for variable lan_extension of resource fortimanager.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],
});
Copy
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]))
Copy
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
	})
}
Copy
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,
        },
    });

});
Copy
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());

    }
}
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. ObjectExtendercontrollerExtenderprofileLanextensionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. ObjectExtendercontrollerExtenderprofileLanextensionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectExtendercontrollerExtenderprofileLanextensionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
});
Copy
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"),
})
Copy
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());
Copy
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")
Copy
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",
});
Copy
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
Copy

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:

ExtenderProfile This property is required. string
Extender Profile.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
BackhaulInterface string
IPsec phase1 interface.
BackhaulIp string
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
Backhauls List<ObjectExtendercontrollerExtenderprofileLanextensionBackhaul>
Backhaul. The structure of backhaul block is documented below.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
IpsecTunnel string
IPsec tunnel name.
LinkLoadbalance string
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
ObjectExtendercontrollerExtenderprofileLanextensionId string
an identifier for the resource.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
ExtenderProfile This property is required. string
Extender Profile.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
BackhaulInterface string
IPsec phase1 interface.
BackhaulIp string
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
Backhauls []ObjectExtendercontrollerExtenderprofileLanextensionBackhaulTypeArgs
Backhaul. The structure of backhaul block is documented below.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
IpsecTunnel string
IPsec tunnel name.
LinkLoadbalance string
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
ObjectExtendercontrollerExtenderprofileLanextensionId string
an identifier for the resource.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
extenderProfile This property is required. String
Extender Profile.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
backhaulInterface String
IPsec phase1 interface.
backhaulIp String
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
backhauls List<ObjectExtendercontrollerExtenderprofileLanextensionBackhaul>
Backhaul. The structure of backhaul block is documented below.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
ipsecTunnel String
IPsec tunnel name.
linkLoadbalance String
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
objectExtendercontrollerExtenderprofileLanextensionId String
an identifier for the resource.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
extenderProfile This property is required. string
Extender Profile.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
backhaulInterface string
IPsec phase1 interface.
backhaulIp string
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
backhauls ObjectExtendercontrollerExtenderprofileLanextensionBackhaul[]
Backhaul. The structure of backhaul block is documented below.
dynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
ipsecTunnel string
IPsec tunnel name.
linkLoadbalance string
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
objectExtendercontrollerExtenderprofileLanextensionId string
an identifier for the resource.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
extender_profile This property is required. str
Extender Profile.
adom str
Adom. This value is valid only when the scopetype is adom, 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[ObjectExtendercontrollerExtenderprofileLanextensionBackhaulArgs]
Backhaul. The structure of backhaul block is documented below.
dynamic_sort_subtable str
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
ipsec_tunnel str
IPsec tunnel name.
link_loadbalance str
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
object_extendercontroller_extenderprofile_lanextension_id str
an identifier for the resource.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
extenderProfile This property is required. String
Extender Profile.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
backhaulInterface String
IPsec phase1 interface.
backhaulIp 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.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
ipsecTunnel String
IPsec tunnel name.
linkLoadbalance String
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
objectExtendercontrollerExtenderprofileLanextensionId String
an identifier for the resource.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
BackhaulInterface string
IPsec phase1 interface.
BackhaulIp string
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
Backhauls List<ObjectExtendercontrollerExtenderprofileLanextensionBackhaul>
Backhaul. The structure of backhaul block is documented below.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
ExtenderProfile string
Extender Profile.
IpsecTunnel string
IPsec tunnel name.
LinkLoadbalance string
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
ObjectExtendercontrollerExtenderprofileLanextensionId string
an identifier for the resource.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
BackhaulInterface string
IPsec phase1 interface.
BackhaulIp string
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
Backhauls []ObjectExtendercontrollerExtenderprofileLanextensionBackhaulTypeArgs
Backhaul. The structure of backhaul block is documented below.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
ExtenderProfile string
Extender Profile.
IpsecTunnel string
IPsec tunnel name.
LinkLoadbalance string
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
ObjectExtendercontrollerExtenderprofileLanextensionId string
an identifier for the resource.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
backhaulInterface String
IPsec phase1 interface.
backhaulIp String
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
backhauls List<ObjectExtendercontrollerExtenderprofileLanextensionBackhaul>
Backhaul. The structure of backhaul block is documented below.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
extenderProfile String
Extender Profile.
ipsecTunnel String
IPsec tunnel name.
linkLoadbalance String
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
objectExtendercontrollerExtenderprofileLanextensionId String
an identifier for the resource.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
backhaulInterface string
IPsec phase1 interface.
backhaulIp string
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
backhauls ObjectExtendercontrollerExtenderprofileLanextensionBackhaul[]
Backhaul. The structure of backhaul block is documented below.
dynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
extenderProfile string
Extender Profile.
ipsecTunnel string
IPsec tunnel name.
linkLoadbalance string
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
objectExtendercontrollerExtenderprofileLanextensionId string
an identifier for the resource.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
adom str
Adom. This value is valid only when the scopetype is adom, 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[ObjectExtendercontrollerExtenderprofileLanextensionBackhaulArgs]
Backhaul. The structure of backhaul block is documented below.
dynamic_sort_subtable str
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
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_extenderprofile_lanextension_id str
an identifier for the resource.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
backhaulInterface String
IPsec phase1 interface.
backhaulIp 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.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
extenderProfile String
Extender Profile.
ipsecTunnel String
IPsec tunnel name.
linkLoadbalance String
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
objectExtendercontrollerExtenderprofileLanextensionId String
an identifier for the resource.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

Supporting Types

ObjectExtendercontrollerExtenderprofileLanextensionBackhaul
, ObjectExtendercontrollerExtenderprofileLanextensionBackhaulArgs

Name string
FortiExtender LAN extension backhaul name
Port string
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
Role string
FortiExtender uplink port. Valid values: primary, secondary.
Weight double
WRR weight parameter
Name string
FortiExtender LAN extension backhaul name
Port string
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
Role string
FortiExtender uplink port. Valid values: primary, secondary.
Weight float64
WRR weight parameter
name String
FortiExtender LAN extension backhaul name
port String
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
role String
FortiExtender uplink port. Valid values: primary, secondary.
weight Double
WRR weight parameter
name string
FortiExtender LAN extension backhaul name
port string
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
role string
FortiExtender uplink port. Valid values: primary, secondary.
weight number
WRR weight parameter
name str
FortiExtender LAN extension backhaul name
port str
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
role str
FortiExtender uplink port. Valid values: primary, secondary.
weight float
WRR weight parameter
name String
FortiExtender LAN extension backhaul name
port String
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
role String
FortiExtender uplink port. Valid values: primary, secondary.
weight Number
WRR weight parameter

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
Copy

$ 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.