1. Packages
  2. Fortios
  3. API Docs
  4. system
  5. Evpn
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.system.Evpn

Explore with Pulumi AI

Configure EVPN instance. Applies to FortiOS Version >= 7.4.0.

Create Evpn Resource

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

Constructor syntax

new Evpn(name: string, args?: EvpnArgs, opts?: CustomResourceOptions);
@overload
def Evpn(resource_name: str,
         args: Optional[EvpnArgs] = None,
         opts: Optional[ResourceOptions] = None)

@overload
def Evpn(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         arp_suppression: Optional[str] = None,
         dynamic_sort_subtable: Optional[str] = None,
         export_rts: Optional[Sequence[EvpnExportRtArgs]] = None,
         fosid: Optional[int] = None,
         get_all_tables: Optional[str] = None,
         import_rts: Optional[Sequence[EvpnImportRtArgs]] = None,
         ip_local_learning: Optional[str] = None,
         rd: Optional[str] = None,
         vdomparam: Optional[str] = None)
func NewEvpn(ctx *Context, name string, args *EvpnArgs, opts ...ResourceOption) (*Evpn, error)
public Evpn(string name, EvpnArgs? args = null, CustomResourceOptions? opts = null)
public Evpn(String name, EvpnArgs args)
public Evpn(String name, EvpnArgs args, CustomResourceOptions options)
type: fortios:system:Evpn
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 EvpnArgs
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 EvpnArgs
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 EvpnArgs
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 EvpnArgs
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. EvpnArgs
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 evpnResource = new Fortios.System.Evpn("evpnResource", new()
{
    ArpSuppression = "string",
    DynamicSortSubtable = "string",
    ExportRts = new[]
    {
        new Fortios.System.Inputs.EvpnExportRtArgs
        {
            RouteTarget = "string",
        },
    },
    Fosid = 0,
    GetAllTables = "string",
    ImportRts = new[]
    {
        new Fortios.System.Inputs.EvpnImportRtArgs
        {
            RouteTarget = "string",
        },
    },
    IpLocalLearning = "string",
    Rd = "string",
    Vdomparam = "string",
});
Copy
example, err := system.NewEvpn(ctx, "evpnResource", &system.EvpnArgs{
	ArpSuppression:      pulumi.String("string"),
	DynamicSortSubtable: pulumi.String("string"),
	ExportRts: system.EvpnExportRtArray{
		&system.EvpnExportRtArgs{
			RouteTarget: pulumi.String("string"),
		},
	},
	Fosid:        pulumi.Int(0),
	GetAllTables: pulumi.String("string"),
	ImportRts: system.EvpnImportRtArray{
		&system.EvpnImportRtArgs{
			RouteTarget: pulumi.String("string"),
		},
	},
	IpLocalLearning: pulumi.String("string"),
	Rd:              pulumi.String("string"),
	Vdomparam:       pulumi.String("string"),
})
Copy
var evpnResource = new Evpn("evpnResource", EvpnArgs.builder()
    .arpSuppression("string")
    .dynamicSortSubtable("string")
    .exportRts(EvpnExportRtArgs.builder()
        .routeTarget("string")
        .build())
    .fosid(0)
    .getAllTables("string")
    .importRts(EvpnImportRtArgs.builder()
        .routeTarget("string")
        .build())
    .ipLocalLearning("string")
    .rd("string")
    .vdomparam("string")
    .build());
Copy
evpn_resource = fortios.system.Evpn("evpnResource",
    arp_suppression="string",
    dynamic_sort_subtable="string",
    export_rts=[{
        "route_target": "string",
    }],
    fosid=0,
    get_all_tables="string",
    import_rts=[{
        "route_target": "string",
    }],
    ip_local_learning="string",
    rd="string",
    vdomparam="string")
Copy
const evpnResource = new fortios.system.Evpn("evpnResource", {
    arpSuppression: "string",
    dynamicSortSubtable: "string",
    exportRts: [{
        routeTarget: "string",
    }],
    fosid: 0,
    getAllTables: "string",
    importRts: [{
        routeTarget: "string",
    }],
    ipLocalLearning: "string",
    rd: "string",
    vdomparam: "string",
});
Copy
type: fortios:system:Evpn
properties:
    arpSuppression: string
    dynamicSortSubtable: string
    exportRts:
        - routeTarget: string
    fosid: 0
    getAllTables: string
    importRts:
        - routeTarget: string
    ipLocalLearning: string
    rd: string
    vdomparam: string
Copy

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

ArpSuppression string
Enable/disable ARP suppression. Valid values: enable, disable.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
ExportRts List<Pulumiverse.Fortios.System.Inputs.EvpnExportRt>
List of export route targets. The structure of export_rt block is documented below.
Fosid Changes to this property will trigger replacement. int
ID.
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
ImportRts List<Pulumiverse.Fortios.System.Inputs.EvpnImportRt>
List of import route targets. The structure of import_rt block is documented below.
IpLocalLearning string
Enable/disable IP address local learning. Valid values: enable, disable.
Rd string
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
ArpSuppression string
Enable/disable ARP suppression. Valid values: enable, disable.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
ExportRts []EvpnExportRtArgs
List of export route targets. The structure of export_rt block is documented below.
Fosid Changes to this property will trigger replacement. int
ID.
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
ImportRts []EvpnImportRtArgs
List of import route targets. The structure of import_rt block is documented below.
IpLocalLearning string
Enable/disable IP address local learning. Valid values: enable, disable.
Rd string
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
arpSuppression String
Enable/disable ARP suppression. Valid values: enable, disable.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exportRts List<EvpnExportRt>
List of export route targets. The structure of export_rt block is documented below.
fosid Changes to this property will trigger replacement. Integer
ID.
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
importRts List<EvpnImportRt>
List of import route targets. The structure of import_rt block is documented below.
ipLocalLearning String
Enable/disable IP address local learning. Valid values: enable, disable.
rd String
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
arpSuppression string
Enable/disable ARP suppression. Valid values: enable, disable.
dynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exportRts EvpnExportRt[]
List of export route targets. The structure of export_rt block is documented below.
fosid Changes to this property will trigger replacement. number
ID.
getAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
importRts EvpnImportRt[]
List of import route targets. The structure of import_rt block is documented below.
ipLocalLearning string
Enable/disable IP address local learning. Valid values: enable, disable.
rd string
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
arp_suppression str
Enable/disable ARP suppression. Valid values: enable, disable.
dynamic_sort_subtable str
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
export_rts Sequence[EvpnExportRtArgs]
List of export route targets. The structure of export_rt block is documented below.
fosid Changes to this property will trigger replacement. int
ID.
get_all_tables str
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
import_rts Sequence[EvpnImportRtArgs]
List of import route targets. The structure of import_rt block is documented below.
ip_local_learning str
Enable/disable IP address local learning. Valid values: enable, disable.
rd str
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
vdomparam Changes to this property will trigger replacement. str
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
arpSuppression String
Enable/disable ARP suppression. Valid values: enable, disable.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exportRts List<Property Map>
List of export route targets. The structure of export_rt block is documented below.
fosid Changes to this property will trigger replacement. Number
ID.
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
importRts List<Property Map>
List of import route targets. The structure of import_rt block is documented below.
ipLocalLearning String
Enable/disable IP address local learning. Valid values: enable, disable.
rd String
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

Outputs

All input properties are implicitly available as output properties. Additionally, the Evpn 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 Evpn Resource

Get an existing Evpn 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?: EvpnState, opts?: CustomResourceOptions): Evpn
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arp_suppression: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        export_rts: Optional[Sequence[EvpnExportRtArgs]] = None,
        fosid: Optional[int] = None,
        get_all_tables: Optional[str] = None,
        import_rts: Optional[Sequence[EvpnImportRtArgs]] = None,
        ip_local_learning: Optional[str] = None,
        rd: Optional[str] = None,
        vdomparam: Optional[str] = None) -> Evpn
func GetEvpn(ctx *Context, name string, id IDInput, state *EvpnState, opts ...ResourceOption) (*Evpn, error)
public static Evpn Get(string name, Input<string> id, EvpnState? state, CustomResourceOptions? opts = null)
public static Evpn get(String name, Output<String> id, EvpnState state, CustomResourceOptions options)
resources:  _:    type: fortios:system:Evpn    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:
ArpSuppression string
Enable/disable ARP suppression. Valid values: enable, disable.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
ExportRts List<Pulumiverse.Fortios.System.Inputs.EvpnExportRt>
List of export route targets. The structure of export_rt block is documented below.
Fosid Changes to this property will trigger replacement. int
ID.
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
ImportRts List<Pulumiverse.Fortios.System.Inputs.EvpnImportRt>
List of import route targets. The structure of import_rt block is documented below.
IpLocalLearning string
Enable/disable IP address local learning. Valid values: enable, disable.
Rd string
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
ArpSuppression string
Enable/disable ARP suppression. Valid values: enable, disable.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
ExportRts []EvpnExportRtArgs
List of export route targets. The structure of export_rt block is documented below.
Fosid Changes to this property will trigger replacement. int
ID.
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
ImportRts []EvpnImportRtArgs
List of import route targets. The structure of import_rt block is documented below.
IpLocalLearning string
Enable/disable IP address local learning. Valid values: enable, disable.
Rd string
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
arpSuppression String
Enable/disable ARP suppression. Valid values: enable, disable.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exportRts List<EvpnExportRt>
List of export route targets. The structure of export_rt block is documented below.
fosid Changes to this property will trigger replacement. Integer
ID.
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
importRts List<EvpnImportRt>
List of import route targets. The structure of import_rt block is documented below.
ipLocalLearning String
Enable/disable IP address local learning. Valid values: enable, disable.
rd String
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
arpSuppression string
Enable/disable ARP suppression. Valid values: enable, disable.
dynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exportRts EvpnExportRt[]
List of export route targets. The structure of export_rt block is documented below.
fosid Changes to this property will trigger replacement. number
ID.
getAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
importRts EvpnImportRt[]
List of import route targets. The structure of import_rt block is documented below.
ipLocalLearning string
Enable/disable IP address local learning. Valid values: enable, disable.
rd string
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
arp_suppression str
Enable/disable ARP suppression. Valid values: enable, disable.
dynamic_sort_subtable str
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
export_rts Sequence[EvpnExportRtArgs]
List of export route targets. The structure of export_rt block is documented below.
fosid Changes to this property will trigger replacement. int
ID.
get_all_tables str
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
import_rts Sequence[EvpnImportRtArgs]
List of import route targets. The structure of import_rt block is documented below.
ip_local_learning str
Enable/disable IP address local learning. Valid values: enable, disable.
rd str
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
vdomparam Changes to this property will trigger replacement. str
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
arpSuppression String
Enable/disable ARP suppression. Valid values: enable, disable.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exportRts List<Property Map>
List of export route targets. The structure of export_rt block is documented below.
fosid Changes to this property will trigger replacement. Number
ID.
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
importRts List<Property Map>
List of import route targets. The structure of import_rt block is documented below.
ipLocalLearning String
Enable/disable IP address local learning. Valid values: enable, disable.
rd String
Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

Supporting Types

EvpnExportRt
, EvpnExportRtArgs

RouteTarget string
Route target: AA|AA:NN.
RouteTarget string
Route target: AA|AA:NN.
routeTarget String
Route target: AA|AA:NN.
routeTarget string
Route target: AA|AA:NN.
route_target str
Route target: AA|AA:NN.
routeTarget String
Route target: AA|AA:NN.

EvpnImportRt
, EvpnImportRtArgs

RouteTarget string
Route target: AA|AA:NN.
RouteTarget string
Route target: AA|AA:NN.
routeTarget String
Route target: AA|AA:NN.
routeTarget string
Route target: AA|AA:NN.
route_target str
Route target: AA|AA:NN.
routeTarget String
Route target: AA|AA:NN.

Import

System Evpn can be imported using any of these accepted formats:

$ pulumi import fortios:system/evpn:Evpn labelname {{fosid}}
Copy

If you do not want to import arguments of block:

$ export “FORTIOS_IMPORT_TABLE”=“false”

$ pulumi import fortios:system/evpn:Evpn labelname {{fosid}}
Copy

$ unset “FORTIOS_IMPORT_TABLE”

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

Package Details

Repository
fortios pulumiverse/pulumi-fortios
License
Apache-2.0
Notes
This Pulumi package is based on the fortios Terraform Provider.