iosxe.Evpn
Explore with Pulumi AI
This resource can manage the EVPN configuration.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Iosxe = Lbrlabs.PulumiPackage.Iosxe;
return await Deployment.RunAsync(() =>
{
var example = new Iosxe.Evpn("example", new()
{
DefaultGatewayAdvertise = true,
IpDuplicationLimit = 10,
IpDuplicationTime = 100,
LoggingPeerState = true,
MacDuplicationLimit = 10,
MacDuplicationTime = 100,
ReplicationTypeIngress = false,
ReplicationTypeMp2mp = false,
ReplicationTypeP2mp = false,
ReplicationTypeStatic = true,
RouteTargetAutoVni = true,
RouterIdLoopback = 100,
});
});
package main
import (
"github.com/lbrlabs/pulumi-iosxe/sdk/go/iosxe"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := iosxe.NewEvpn(ctx, "example", &iosxe.EvpnArgs{
DefaultGatewayAdvertise: pulumi.Bool(true),
IpDuplicationLimit: pulumi.Int(10),
IpDuplicationTime: pulumi.Int(100),
LoggingPeerState: pulumi.Bool(true),
MacDuplicationLimit: pulumi.Int(10),
MacDuplicationTime: pulumi.Int(100),
ReplicationTypeIngress: pulumi.Bool(false),
ReplicationTypeMp2mp: pulumi.Bool(false),
ReplicationTypeP2mp: pulumi.Bool(false),
ReplicationTypeStatic: pulumi.Bool(true),
RouteTargetAutoVni: pulumi.Bool(true),
RouterIdLoopback: pulumi.Int(100),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.iosxe.Evpn;
import com.pulumi.iosxe.EvpnArgs;
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 example = new Evpn("example", EvpnArgs.builder()
.defaultGatewayAdvertise(true)
.ipDuplicationLimit(10)
.ipDuplicationTime(100)
.loggingPeerState(true)
.macDuplicationLimit(10)
.macDuplicationTime(100)
.replicationTypeIngress(false)
.replicationTypeMp2mp(false)
.replicationTypeP2mp(false)
.replicationTypeStatic(true)
.routeTargetAutoVni(true)
.routerIdLoopback(100)
.build());
}
}
import pulumi
import lbrlabs_pulumi_iosxe as iosxe
example = iosxe.Evpn("example",
default_gateway_advertise=True,
ip_duplication_limit=10,
ip_duplication_time=100,
logging_peer_state=True,
mac_duplication_limit=10,
mac_duplication_time=100,
replication_type_ingress=False,
replication_type_mp2mp=False,
replication_type_p2mp=False,
replication_type_static=True,
route_target_auto_vni=True,
router_id_loopback=100)
import * as pulumi from "@pulumi/pulumi";
import * as iosxe from "@lbrlabs/pulumi-iosxe";
const example = new iosxe.Evpn("example", {
defaultGatewayAdvertise: true,
ipDuplicationLimit: 10,
ipDuplicationTime: 100,
loggingPeerState: true,
macDuplicationLimit: 10,
macDuplicationTime: 100,
replicationTypeIngress: false,
replicationTypeMp2mp: false,
replicationTypeP2mp: false,
replicationTypeStatic: true,
routeTargetAutoVni: true,
routerIdLoopback: 100,
});
resources:
example:
type: iosxe:Evpn
properties:
defaultGatewayAdvertise: true
ipDuplicationLimit: 10
ipDuplicationTime: 100
loggingPeerState: true
macDuplicationLimit: 10
macDuplicationTime: 100
replicationTypeIngress: false
replicationTypeMp2mp: false
replicationTypeP2mp: false
replicationTypeStatic: true
routeTargetAutoVni: true
routerIdLoopback: 100
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,
default_gateway_advertise: Optional[bool] = None,
delete_mode: Optional[str] = None,
device: Optional[str] = None,
ip_duplication_limit: Optional[int] = None,
ip_duplication_time: Optional[int] = None,
logging_peer_state: Optional[bool] = None,
mac_duplication_limit: Optional[int] = None,
mac_duplication_time: Optional[int] = None,
replication_type_ingress: Optional[bool] = None,
replication_type_mp2mp: Optional[bool] = None,
replication_type_p2mp: Optional[bool] = None,
replication_type_static: Optional[bool] = None,
route_target_auto_vni: Optional[bool] = None,
router_id_loopback: Optional[int] = None)
func NewEvpn(ctx *Context, name string, args *EvpnArgs, opts ...ResourceOption) (*Evpn, error)
public Evpn(string name, EvpnArgs? args = null, CustomResourceOptions? opts = null)
type: iosxe: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 Iosxe.Evpn("evpnResource", new()
{
DefaultGatewayAdvertise = false,
DeleteMode = "string",
Device = "string",
IpDuplicationLimit = 0,
IpDuplicationTime = 0,
LoggingPeerState = false,
MacDuplicationLimit = 0,
MacDuplicationTime = 0,
ReplicationTypeIngress = false,
ReplicationTypeMp2mp = false,
ReplicationTypeP2mp = false,
ReplicationTypeStatic = false,
RouteTargetAutoVni = false,
RouterIdLoopback = 0,
});
example, err := iosxe.NewEvpn(ctx, "evpnResource", &iosxe.EvpnArgs{
DefaultGatewayAdvertise: pulumi.Bool(false),
DeleteMode: pulumi.String("string"),
Device: pulumi.String("string"),
IpDuplicationLimit: pulumi.Int(0),
IpDuplicationTime: pulumi.Int(0),
LoggingPeerState: pulumi.Bool(false),
MacDuplicationLimit: pulumi.Int(0),
MacDuplicationTime: pulumi.Int(0),
ReplicationTypeIngress: pulumi.Bool(false),
ReplicationTypeMp2mp: pulumi.Bool(false),
ReplicationTypeP2mp: pulumi.Bool(false),
ReplicationTypeStatic: pulumi.Bool(false),
RouteTargetAutoVni: pulumi.Bool(false),
RouterIdLoopback: pulumi.Int(0),
})
var evpnResource = new Evpn("evpnResource", EvpnArgs.builder()
.defaultGatewayAdvertise(false)
.deleteMode("string")
.device("string")
.ipDuplicationLimit(0)
.ipDuplicationTime(0)
.loggingPeerState(false)
.macDuplicationLimit(0)
.macDuplicationTime(0)
.replicationTypeIngress(false)
.replicationTypeMp2mp(false)
.replicationTypeP2mp(false)
.replicationTypeStatic(false)
.routeTargetAutoVni(false)
.routerIdLoopback(0)
.build());
evpn_resource = iosxe.Evpn("evpnResource",
default_gateway_advertise=False,
delete_mode="string",
device="string",
ip_duplication_limit=0,
ip_duplication_time=0,
logging_peer_state=False,
mac_duplication_limit=0,
mac_duplication_time=0,
replication_type_ingress=False,
replication_type_mp2mp=False,
replication_type_p2mp=False,
replication_type_static=False,
route_target_auto_vni=False,
router_id_loopback=0)
const evpnResource = new iosxe.Evpn("evpnResource", {
defaultGatewayAdvertise: false,
deleteMode: "string",
device: "string",
ipDuplicationLimit: 0,
ipDuplicationTime: 0,
loggingPeerState: false,
macDuplicationLimit: 0,
macDuplicationTime: 0,
replicationTypeIngress: false,
replicationTypeMp2mp: false,
replicationTypeP2mp: false,
replicationTypeStatic: false,
routeTargetAutoVni: false,
routerIdLoopback: 0,
});
type: iosxe:Evpn
properties:
defaultGatewayAdvertise: false
deleteMode: string
device: string
ipDuplicationLimit: 0
ipDuplicationTime: 0
loggingPeerState: false
macDuplicationLimit: 0
macDuplicationTime: 0
replicationTypeIngress: false
replicationTypeMp2mp: false
replicationTypeP2mp: false
replicationTypeStatic: false
routeTargetAutoVni: false
routerIdLoopback: 0
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
The Evpn resource accepts the following input properties:
- Default
Gateway boolAdvertise - Advertise Default Gateway MAC/IP routes
- Delete
Mode string - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- Device string
- A device name from the provider configuration.
- Ip
Duplication intLimit - Number of IP moves within specified time interval - Range:
2
-1000
- Ip
Duplication intTime - IP duplication timer - Range:
10
-36000
- Logging
Peer boolState - Peer state transition logging
- Mac
Duplication intLimit - Number of MAC moves within specified time interval - Range:
2
-1000
- Mac
Duplication intTime - MAC duplication timer - Range:
10
-36000
- Replication
Type boolIngress - Ingress replication
- Replication
Type boolMp2mp - mp2mp replication
- Replication
Type boolP2mp - p2mp replication
- Replication
Type boolStatic - Static replication
- Route
Target boolAuto Vni - Set vni-based route-target
- Router
Id intLoopback - Loopback interface - Range:
0
-2147483647
- Default
Gateway boolAdvertise - Advertise Default Gateway MAC/IP routes
- Delete
Mode string - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- Device string
- A device name from the provider configuration.
- Ip
Duplication intLimit - Number of IP moves within specified time interval - Range:
2
-1000
- Ip
Duplication intTime - IP duplication timer - Range:
10
-36000
- Logging
Peer boolState - Peer state transition logging
- Mac
Duplication intLimit - Number of MAC moves within specified time interval - Range:
2
-1000
- Mac
Duplication intTime - MAC duplication timer - Range:
10
-36000
- Replication
Type boolIngress - Ingress replication
- Replication
Type boolMp2mp - mp2mp replication
- Replication
Type boolP2mp - p2mp replication
- Replication
Type boolStatic - Static replication
- Route
Target boolAuto Vni - Set vni-based route-target
- Router
Id intLoopback - Loopback interface - Range:
0
-2147483647
- default
Gateway BooleanAdvertise - Advertise Default Gateway MAC/IP routes
- delete
Mode String - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- device String
- A device name from the provider configuration.
- ip
Duplication IntegerLimit - Number of IP moves within specified time interval - Range:
2
-1000
- ip
Duplication IntegerTime - IP duplication timer - Range:
10
-36000
- logging
Peer BooleanState - Peer state transition logging
- mac
Duplication IntegerLimit - Number of MAC moves within specified time interval - Range:
2
-1000
- mac
Duplication IntegerTime - MAC duplication timer - Range:
10
-36000
- replication
Type BooleanIngress - Ingress replication
- replication
Type BooleanMp2mp - mp2mp replication
- replication
Type BooleanP2mp - p2mp replication
- replication
Type BooleanStatic - Static replication
- route
Target BooleanAuto Vni - Set vni-based route-target
- router
Id IntegerLoopback - Loopback interface - Range:
0
-2147483647
- default
Gateway booleanAdvertise - Advertise Default Gateway MAC/IP routes
- delete
Mode string - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- device string
- A device name from the provider configuration.
- ip
Duplication numberLimit - Number of IP moves within specified time interval - Range:
2
-1000
- ip
Duplication numberTime - IP duplication timer - Range:
10
-36000
- logging
Peer booleanState - Peer state transition logging
- mac
Duplication numberLimit - Number of MAC moves within specified time interval - Range:
2
-1000
- mac
Duplication numberTime - MAC duplication timer - Range:
10
-36000
- replication
Type booleanIngress - Ingress replication
- replication
Type booleanMp2mp - mp2mp replication
- replication
Type booleanP2mp - p2mp replication
- replication
Type booleanStatic - Static replication
- route
Target booleanAuto Vni - Set vni-based route-target
- router
Id numberLoopback - Loopback interface - Range:
0
-2147483647
- default_
gateway_ booladvertise - Advertise Default Gateway MAC/IP routes
- delete_
mode str - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- device str
- A device name from the provider configuration.
- ip_
duplication_ intlimit - Number of IP moves within specified time interval - Range:
2
-1000
- ip_
duplication_ inttime - IP duplication timer - Range:
10
-36000
- logging_
peer_ boolstate - Peer state transition logging
- mac_
duplication_ intlimit - Number of MAC moves within specified time interval - Range:
2
-1000
- mac_
duplication_ inttime - MAC duplication timer - Range:
10
-36000
- replication_
type_ boolingress - Ingress replication
- replication_
type_ boolmp2mp - mp2mp replication
- replication_
type_ boolp2mp - p2mp replication
- replication_
type_ boolstatic - Static replication
- route_
target_ boolauto_ vni - Set vni-based route-target
- router_
id_ intloopback - Loopback interface - Range:
0
-2147483647
- default
Gateway BooleanAdvertise - Advertise Default Gateway MAC/IP routes
- delete
Mode String - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- device String
- A device name from the provider configuration.
- ip
Duplication NumberLimit - Number of IP moves within specified time interval - Range:
2
-1000
- ip
Duplication NumberTime - IP duplication timer - Range:
10
-36000
- logging
Peer BooleanState - Peer state transition logging
- mac
Duplication NumberLimit - Number of MAC moves within specified time interval - Range:
2
-1000
- mac
Duplication NumberTime - MAC duplication timer - Range:
10
-36000
- replication
Type BooleanIngress - Ingress replication
- replication
Type BooleanMp2mp - mp2mp replication
- replication
Type BooleanP2mp - p2mp replication
- replication
Type BooleanStatic - Static replication
- route
Target BooleanAuto Vni - Set vni-based route-target
- router
Id NumberLoopback - Loopback interface - Range:
0
-2147483647
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,
default_gateway_advertise: Optional[bool] = None,
delete_mode: Optional[str] = None,
device: Optional[str] = None,
ip_duplication_limit: Optional[int] = None,
ip_duplication_time: Optional[int] = None,
logging_peer_state: Optional[bool] = None,
mac_duplication_limit: Optional[int] = None,
mac_duplication_time: Optional[int] = None,
replication_type_ingress: Optional[bool] = None,
replication_type_mp2mp: Optional[bool] = None,
replication_type_p2mp: Optional[bool] = None,
replication_type_static: Optional[bool] = None,
route_target_auto_vni: Optional[bool] = None,
router_id_loopback: Optional[int] = 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)
Resource lookup is not supported in YAML
- 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.
- Default
Gateway boolAdvertise - Advertise Default Gateway MAC/IP routes
- Delete
Mode string - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- Device string
- A device name from the provider configuration.
- Ip
Duplication intLimit - Number of IP moves within specified time interval - Range:
2
-1000
- Ip
Duplication intTime - IP duplication timer - Range:
10
-36000
- Logging
Peer boolState - Peer state transition logging
- Mac
Duplication intLimit - Number of MAC moves within specified time interval - Range:
2
-1000
- Mac
Duplication intTime - MAC duplication timer - Range:
10
-36000
- Replication
Type boolIngress - Ingress replication
- Replication
Type boolMp2mp - mp2mp replication
- Replication
Type boolP2mp - p2mp replication
- Replication
Type boolStatic - Static replication
- Route
Target boolAuto Vni - Set vni-based route-target
- Router
Id intLoopback - Loopback interface - Range:
0
-2147483647
- Default
Gateway boolAdvertise - Advertise Default Gateway MAC/IP routes
- Delete
Mode string - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- Device string
- A device name from the provider configuration.
- Ip
Duplication intLimit - Number of IP moves within specified time interval - Range:
2
-1000
- Ip
Duplication intTime - IP duplication timer - Range:
10
-36000
- Logging
Peer boolState - Peer state transition logging
- Mac
Duplication intLimit - Number of MAC moves within specified time interval - Range:
2
-1000
- Mac
Duplication intTime - MAC duplication timer - Range:
10
-36000
- Replication
Type boolIngress - Ingress replication
- Replication
Type boolMp2mp - mp2mp replication
- Replication
Type boolP2mp - p2mp replication
- Replication
Type boolStatic - Static replication
- Route
Target boolAuto Vni - Set vni-based route-target
- Router
Id intLoopback - Loopback interface - Range:
0
-2147483647
- default
Gateway BooleanAdvertise - Advertise Default Gateway MAC/IP routes
- delete
Mode String - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- device String
- A device name from the provider configuration.
- ip
Duplication IntegerLimit - Number of IP moves within specified time interval - Range:
2
-1000
- ip
Duplication IntegerTime - IP duplication timer - Range:
10
-36000
- logging
Peer BooleanState - Peer state transition logging
- mac
Duplication IntegerLimit - Number of MAC moves within specified time interval - Range:
2
-1000
- mac
Duplication IntegerTime - MAC duplication timer - Range:
10
-36000
- replication
Type BooleanIngress - Ingress replication
- replication
Type BooleanMp2mp - mp2mp replication
- replication
Type BooleanP2mp - p2mp replication
- replication
Type BooleanStatic - Static replication
- route
Target BooleanAuto Vni - Set vni-based route-target
- router
Id IntegerLoopback - Loopback interface - Range:
0
-2147483647
- default
Gateway booleanAdvertise - Advertise Default Gateway MAC/IP routes
- delete
Mode string - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- device string
- A device name from the provider configuration.
- ip
Duplication numberLimit - Number of IP moves within specified time interval - Range:
2
-1000
- ip
Duplication numberTime - IP duplication timer - Range:
10
-36000
- logging
Peer booleanState - Peer state transition logging
- mac
Duplication numberLimit - Number of MAC moves within specified time interval - Range:
2
-1000
- mac
Duplication numberTime - MAC duplication timer - Range:
10
-36000
- replication
Type booleanIngress - Ingress replication
- replication
Type booleanMp2mp - mp2mp replication
- replication
Type booleanP2mp - p2mp replication
- replication
Type booleanStatic - Static replication
- route
Target booleanAuto Vni - Set vni-based route-target
- router
Id numberLoopback - Loopback interface - Range:
0
-2147483647
- default_
gateway_ booladvertise - Advertise Default Gateway MAC/IP routes
- delete_
mode str - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- device str
- A device name from the provider configuration.
- ip_
duplication_ intlimit - Number of IP moves within specified time interval - Range:
2
-1000
- ip_
duplication_ inttime - IP duplication timer - Range:
10
-36000
- logging_
peer_ boolstate - Peer state transition logging
- mac_
duplication_ intlimit - Number of MAC moves within specified time interval - Range:
2
-1000
- mac_
duplication_ inttime - MAC duplication timer - Range:
10
-36000
- replication_
type_ boolingress - Ingress replication
- replication_
type_ boolmp2mp - mp2mp replication
- replication_
type_ boolp2mp - p2mp replication
- replication_
type_ boolstatic - Static replication
- route_
target_ boolauto_ vni - Set vni-based route-target
- router_
id_ intloopback - Loopback interface - Range:
0
-2147483647
- default
Gateway BooleanAdvertise - Advertise Default Gateway MAC/IP routes
- delete
Mode String - Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being
managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is.
Default value is
all
. - Choices:all
,attributes
- device String
- A device name from the provider configuration.
- ip
Duplication NumberLimit - Number of IP moves within specified time interval - Range:
2
-1000
- ip
Duplication NumberTime - IP duplication timer - Range:
10
-36000
- logging
Peer BooleanState - Peer state transition logging
- mac
Duplication NumberLimit - Number of MAC moves within specified time interval - Range:
2
-1000
- mac
Duplication NumberTime - MAC duplication timer - Range:
10
-36000
- replication
Type BooleanIngress - Ingress replication
- replication
Type BooleanMp2mp - mp2mp replication
- replication
Type BooleanP2mp - p2mp replication
- replication
Type BooleanStatic - Static replication
- route
Target BooleanAuto Vni - Set vni-based route-target
- router
Id NumberLoopback - Loopback interface - Range:
0
-2147483647
Import
$ pulumi import iosxe:index/evpn:Evpn example "Cisco-IOS-XE-native:native/l2vpn/Cisco-IOS-XE-l2vpn:evpn_cont/evpn"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- iosxe lbrlabs/pulumi-iosxe
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
iosxe
Terraform Provider.