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 * 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,
});
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)
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
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:
- DefaultGateway boolAdvertise 
- Advertise Default Gateway MAC/IP routes
- DeleteMode 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.
- IpDuplication intLimit 
- Number of IP moves within specified time interval - Range: 2-1000
- IpDuplication intTime 
- IP duplication timer - Range: 10-36000
- LoggingPeer boolState 
- Peer state transition logging
- MacDuplication intLimit 
- Number of MAC moves within specified time interval - Range: 2-1000
- MacDuplication intTime 
- MAC duplication timer - Range: 10-36000
- ReplicationType boolIngress 
- Ingress replication
- ReplicationType boolMp2mp 
- mp2mp replication
- ReplicationType boolP2mp 
- p2mp replication
- ReplicationType boolStatic 
- Static replication
- RouteTarget boolAuto Vni 
- Set vni-based route-target
- RouterId intLoopback 
- Loopback interface - Range: 0-2147483647
- DefaultGateway boolAdvertise 
- Advertise Default Gateway MAC/IP routes
- DeleteMode 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.
- IpDuplication intLimit 
- Number of IP moves within specified time interval - Range: 2-1000
- IpDuplication intTime 
- IP duplication timer - Range: 10-36000
- LoggingPeer boolState 
- Peer state transition logging
- MacDuplication intLimit 
- Number of MAC moves within specified time interval - Range: 2-1000
- MacDuplication intTime 
- MAC duplication timer - Range: 10-36000
- ReplicationType boolIngress 
- Ingress replication
- ReplicationType boolMp2mp 
- mp2mp replication
- ReplicationType boolP2mp 
- p2mp replication
- ReplicationType boolStatic 
- Static replication
- RouteTarget boolAuto Vni 
- Set vni-based route-target
- RouterId intLoopback 
- Loopback interface - Range: 0-2147483647
- defaultGateway BooleanAdvertise 
- Advertise Default Gateway MAC/IP routes
- deleteMode 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.
- ipDuplication IntegerLimit 
- Number of IP moves within specified time interval - Range: 2-1000
- ipDuplication IntegerTime 
- IP duplication timer - Range: 10-36000
- loggingPeer BooleanState 
- Peer state transition logging
- macDuplication IntegerLimit 
- Number of MAC moves within specified time interval - Range: 2-1000
- macDuplication IntegerTime 
- MAC duplication timer - Range: 10-36000
- replicationType BooleanIngress 
- Ingress replication
- replicationType BooleanMp2mp 
- mp2mp replication
- replicationType BooleanP2mp 
- p2mp replication
- replicationType BooleanStatic 
- Static replication
- routeTarget BooleanAuto Vni 
- Set vni-based route-target
- routerId IntegerLoopback 
- Loopback interface - Range: 0-2147483647
- defaultGateway booleanAdvertise 
- Advertise Default Gateway MAC/IP routes
- deleteMode 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.
- ipDuplication numberLimit 
- Number of IP moves within specified time interval - Range: 2-1000
- ipDuplication numberTime 
- IP duplication timer - Range: 10-36000
- loggingPeer booleanState 
- Peer state transition logging
- macDuplication numberLimit 
- Number of MAC moves within specified time interval - Range: 2-1000
- macDuplication numberTime 
- MAC duplication timer - Range: 10-36000
- replicationType booleanIngress 
- Ingress replication
- replicationType booleanMp2mp 
- mp2mp replication
- replicationType booleanP2mp 
- p2mp replication
- replicationType booleanStatic 
- Static replication
- routeTarget booleanAuto Vni 
- Set vni-based route-target
- routerId 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
- defaultGateway BooleanAdvertise 
- Advertise Default Gateway MAC/IP routes
- deleteMode 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.
- ipDuplication NumberLimit 
- Number of IP moves within specified time interval - Range: 2-1000
- ipDuplication NumberTime 
- IP duplication timer - Range: 10-36000
- loggingPeer BooleanState 
- Peer state transition logging
- macDuplication NumberLimit 
- Number of MAC moves within specified time interval - Range: 2-1000
- macDuplication NumberTime 
- MAC duplication timer - Range: 10-36000
- replicationType BooleanIngress 
- Ingress replication
- replicationType BooleanMp2mp 
- mp2mp replication
- replicationType BooleanP2mp 
- p2mp replication
- replicationType BooleanStatic 
- Static replication
- routeTarget BooleanAuto Vni 
- Set vni-based route-target
- routerId 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) -> 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: iosxe: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.
- DefaultGateway boolAdvertise 
- Advertise Default Gateway MAC/IP routes
- DeleteMode 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.
- IpDuplication intLimit 
- Number of IP moves within specified time interval - Range: 2-1000
- IpDuplication intTime 
- IP duplication timer - Range: 10-36000
- LoggingPeer boolState 
- Peer state transition logging
- MacDuplication intLimit 
- Number of MAC moves within specified time interval - Range: 2-1000
- MacDuplication intTime 
- MAC duplication timer - Range: 10-36000
- ReplicationType boolIngress 
- Ingress replication
- ReplicationType boolMp2mp 
- mp2mp replication
- ReplicationType boolP2mp 
- p2mp replication
- ReplicationType boolStatic 
- Static replication
- RouteTarget boolAuto Vni 
- Set vni-based route-target
- RouterId intLoopback 
- Loopback interface - Range: 0-2147483647
- DefaultGateway boolAdvertise 
- Advertise Default Gateway MAC/IP routes
- DeleteMode 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.
- IpDuplication intLimit 
- Number of IP moves within specified time interval - Range: 2-1000
- IpDuplication intTime 
- IP duplication timer - Range: 10-36000
- LoggingPeer boolState 
- Peer state transition logging
- MacDuplication intLimit 
- Number of MAC moves within specified time interval - Range: 2-1000
- MacDuplication intTime 
- MAC duplication timer - Range: 10-36000
- ReplicationType boolIngress 
- Ingress replication
- ReplicationType boolMp2mp 
- mp2mp replication
- ReplicationType boolP2mp 
- p2mp replication
- ReplicationType boolStatic 
- Static replication
- RouteTarget boolAuto Vni 
- Set vni-based route-target
- RouterId intLoopback 
- Loopback interface - Range: 0-2147483647
- defaultGateway BooleanAdvertise 
- Advertise Default Gateway MAC/IP routes
- deleteMode 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.
- ipDuplication IntegerLimit 
- Number of IP moves within specified time interval - Range: 2-1000
- ipDuplication IntegerTime 
- IP duplication timer - Range: 10-36000
- loggingPeer BooleanState 
- Peer state transition logging
- macDuplication IntegerLimit 
- Number of MAC moves within specified time interval - Range: 2-1000
- macDuplication IntegerTime 
- MAC duplication timer - Range: 10-36000
- replicationType BooleanIngress 
- Ingress replication
- replicationType BooleanMp2mp 
- mp2mp replication
- replicationType BooleanP2mp 
- p2mp replication
- replicationType BooleanStatic 
- Static replication
- routeTarget BooleanAuto Vni 
- Set vni-based route-target
- routerId IntegerLoopback 
- Loopback interface - Range: 0-2147483647
- defaultGateway booleanAdvertise 
- Advertise Default Gateway MAC/IP routes
- deleteMode 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.
- ipDuplication numberLimit 
- Number of IP moves within specified time interval - Range: 2-1000
- ipDuplication numberTime 
- IP duplication timer - Range: 10-36000
- loggingPeer booleanState 
- Peer state transition logging
- macDuplication numberLimit 
- Number of MAC moves within specified time interval - Range: 2-1000
- macDuplication numberTime 
- MAC duplication timer - Range: 10-36000
- replicationType booleanIngress 
- Ingress replication
- replicationType booleanMp2mp 
- mp2mp replication
- replicationType booleanP2mp 
- p2mp replication
- replicationType booleanStatic 
- Static replication
- routeTarget booleanAuto Vni 
- Set vni-based route-target
- routerId 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
- defaultGateway BooleanAdvertise 
- Advertise Default Gateway MAC/IP routes
- deleteMode 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.
- ipDuplication NumberLimit 
- Number of IP moves within specified time interval - Range: 2-1000
- ipDuplication NumberTime 
- IP duplication timer - Range: 10-36000
- loggingPeer BooleanState 
- Peer state transition logging
- macDuplication NumberLimit 
- Number of MAC moves within specified time interval - Range: 2-1000
- macDuplication NumberTime 
- MAC duplication timer - Range: 10-36000
- replicationType BooleanIngress 
- Ingress replication
- replicationType BooleanMp2mp 
- mp2mp replication
- replicationType BooleanP2mp 
- p2mp replication
- replicationType BooleanStatic 
- Static replication
- routeTarget BooleanAuto Vni 
- Set vni-based route-target
- routerId 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 iosxeTerraform Provider.