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)type: fortios:system:Evpn
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 EvpnArgs
- 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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.
- DynamicSort stringSubtable 
- 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. Evpn Export Rt> 
- List of export route targets. The structure of export_rtblock is documented below.
- Fosid int
- ID.
- GetAll stringTables 
- 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. Evpn Import Rt> 
- List of import route targets. The structure of import_rtblock is documented below.
- IpLocal stringLearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- Rd string
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- Vdomparam 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.
- DynamicSort stringSubtable 
- 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 []EvpnExport Rt Args 
- List of export route targets. The structure of export_rtblock is documented below.
- Fosid int
- ID.
- GetAll stringTables 
- 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 []EvpnImport Rt Args 
- List of import route targets. The structure of import_rtblock is documented below.
- IpLocal stringLearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- Rd string
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- Vdomparam 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.
- dynamicSort StringSubtable 
- 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<EvpnExport Rt> 
- List of export route targets. The structure of export_rtblock is documented below.
- fosid Integer
- ID.
- getAll StringTables 
- 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<EvpnImport Rt> 
- List of import route targets. The structure of import_rtblock is documented below.
- ipLocal StringLearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- rd String
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- vdomparam 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.
- dynamicSort stringSubtable 
- 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 EvpnExport Rt[] 
- List of export route targets. The structure of export_rtblock is documented below.
- fosid number
- ID.
- getAll stringTables 
- 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 EvpnImport Rt[] 
- List of import route targets. The structure of import_rtblock is documented below.
- ipLocal stringLearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- rd string
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- vdomparam 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_ strsubtable 
- 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[EvpnExport Rt Args] 
- List of export route targets. The structure of export_rtblock is documented below.
- fosid int
- ID.
- get_all_ strtables 
- 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[EvpnImport Rt Args] 
- List of import route targets. The structure of import_rtblock is documented below.
- ip_local_ strlearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- rd str
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- vdomparam 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.
- dynamicSort StringSubtable 
- 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_rtblock is documented below.
- fosid Number
- ID.
- getAll StringTables 
- 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_rtblock is documented below.
- ipLocal StringLearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- rd String
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- vdomparam 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) -> Evpnfunc 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
- 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.
- ArpSuppression string
- Enable/disable ARP suppression. Valid values: enable,disable.
- DynamicSort stringSubtable 
- 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. Evpn Export Rt> 
- List of export route targets. The structure of export_rtblock is documented below.
- Fosid int
- ID.
- GetAll stringTables 
- 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. Evpn Import Rt> 
- List of import route targets. The structure of import_rtblock is documented below.
- IpLocal stringLearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- Rd string
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- Vdomparam 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.
- DynamicSort stringSubtable 
- 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 []EvpnExport Rt Args 
- List of export route targets. The structure of export_rtblock is documented below.
- Fosid int
- ID.
- GetAll stringTables 
- 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 []EvpnImport Rt Args 
- List of import route targets. The structure of import_rtblock is documented below.
- IpLocal stringLearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- Rd string
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- Vdomparam 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.
- dynamicSort StringSubtable 
- 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<EvpnExport Rt> 
- List of export route targets. The structure of export_rtblock is documented below.
- fosid Integer
- ID.
- getAll StringTables 
- 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<EvpnImport Rt> 
- List of import route targets. The structure of import_rtblock is documented below.
- ipLocal StringLearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- rd String
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- vdomparam 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.
- dynamicSort stringSubtable 
- 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 EvpnExport Rt[] 
- List of export route targets. The structure of export_rtblock is documented below.
- fosid number
- ID.
- getAll stringTables 
- 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 EvpnImport Rt[] 
- List of import route targets. The structure of import_rtblock is documented below.
- ipLocal stringLearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- rd string
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- vdomparam 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_ strsubtable 
- 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[EvpnExport Rt Args] 
- List of export route targets. The structure of export_rtblock is documented below.
- fosid int
- ID.
- get_all_ strtables 
- 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[EvpnImport Rt Args] 
- List of import route targets. The structure of import_rtblock is documented below.
- ip_local_ strlearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- rd str
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- vdomparam 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.
- dynamicSort StringSubtable 
- 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_rtblock is documented below.
- fosid Number
- ID.
- getAll StringTables 
- 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_rtblock is documented below.
- ipLocal StringLearning 
- Enable/disable IP address local learning. Valid values: enable,disable.
- rd String
- Route Distinguisher: AA|AA:NN|A.B.C.D:NN.
- vdomparam 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}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:system/evpn:Evpn labelname {{fosid}}
$ 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 fortiosTerraform Provider.
