nxos.IsisVrf
Explore with Pulumi AI
This resource can manage the IS-IS VRF configuration.
- API Documentation: isisDom
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nxos = Lbrlabs.PulumiPackage.Nxos;
return await Deployment.RunAsync(() =>
{
var example = new Nxos.IsisVrf("example", new()
{
AdminState = "enabled",
AuthenticationCheckL1 = false,
AuthenticationCheckL2 = false,
AuthenticationKeyL1 = "",
AuthenticationKeyL2 = "",
AuthenticationTypeL1 = "unknown",
AuthenticationTypeL2 = "unknown",
BandwidthReference = 400000,
BanwidthReferenceUnit = "mbps",
InstanceName = "ISIS1",
IsType = "l2",
MetricType = "wide",
Mtu = 2000,
Net = "49.0001.0000.0000.3333.00",
PassiveDefault = "l12",
});
});
package main
import (
"github.com/lbrlabs/pulumi-nxos/sdk/go/nxos"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nxos.NewIsisVrf(ctx, "example", &nxos.IsisVrfArgs{
AdminState: pulumi.String("enabled"),
AuthenticationCheckL1: pulumi.Bool(false),
AuthenticationCheckL2: pulumi.Bool(false),
AuthenticationKeyL1: pulumi.String(""),
AuthenticationKeyL2: pulumi.String(""),
AuthenticationTypeL1: pulumi.String("unknown"),
AuthenticationTypeL2: pulumi.String("unknown"),
BandwidthReference: pulumi.Int(400000),
BanwidthReferenceUnit: pulumi.String("mbps"),
InstanceName: pulumi.String("ISIS1"),
IsType: pulumi.String("l2"),
MetricType: pulumi.String("wide"),
Mtu: pulumi.Int(2000),
Net: pulumi.String("49.0001.0000.0000.3333.00"),
PassiveDefault: pulumi.String("l12"),
})
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.nxos.IsisVrf;
import com.pulumi.nxos.IsisVrfArgs;
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 IsisVrf("example", IsisVrfArgs.builder()
.adminState("enabled")
.authenticationCheckL1(false)
.authenticationCheckL2(false)
.authenticationKeyL1("")
.authenticationKeyL2("")
.authenticationTypeL1("unknown")
.authenticationTypeL2("unknown")
.bandwidthReference(400000)
.banwidthReferenceUnit("mbps")
.instanceName("ISIS1")
.isType("l2")
.metricType("wide")
.mtu(2000)
.net("49.0001.0000.0000.3333.00")
.passiveDefault("l12")
.build());
}
}
import pulumi
import lbrlabs_pulumi_nxos as nxos
example = nxos.IsisVrf("example",
admin_state="enabled",
authentication_check_l1=False,
authentication_check_l2=False,
authentication_key_l1="",
authentication_key_l2="",
authentication_type_l1="unknown",
authentication_type_l2="unknown",
bandwidth_reference=400000,
banwidth_reference_unit="mbps",
instance_name="ISIS1",
is_type="l2",
metric_type="wide",
mtu=2000,
net="49.0001.0000.0000.3333.00",
passive_default="l12")
import * as pulumi from "@pulumi/pulumi";
import * as nxos from "@lbrlabs/pulumi-nxos";
const example = new nxos.IsisVrf("example", {
adminState: "enabled",
authenticationCheckL1: false,
authenticationCheckL2: false,
authenticationKeyL1: "",
authenticationKeyL2: "",
authenticationTypeL1: "unknown",
authenticationTypeL2: "unknown",
bandwidthReference: 400000,
banwidthReferenceUnit: "mbps",
instanceName: "ISIS1",
isType: "l2",
metricType: "wide",
mtu: 2000,
net: "49.0001.0000.0000.3333.00",
passiveDefault: "l12",
});
resources:
example:
type: nxos:IsisVrf
properties:
adminState: enabled
authenticationCheckL1: false
authenticationCheckL2: false
authenticationKeyL1:
authenticationKeyL2:
authenticationTypeL1: unknown
authenticationTypeL2: unknown
bandwidthReference: 400000
banwidthReferenceUnit: mbps
instanceName: ISIS1
isType: l2
metricType: wide
mtu: 2000
net: 49.0001.0000.0000.3333.00
passiveDefault: l12
Create IsisVrf Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IsisVrf(name: string, args: IsisVrfArgs, opts?: CustomResourceOptions);
@overload
def IsisVrf(resource_name: str,
args: IsisVrfArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IsisVrf(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_name: Optional[str] = None,
banwidth_reference_unit: Optional[str] = None,
bandwidth_reference: Optional[int] = None,
authentication_key_l1: Optional[str] = None,
authentication_key_l2: Optional[str] = None,
device: Optional[str] = None,
authentication_type_l2: Optional[str] = None,
authentication_check_l2: Optional[bool] = None,
admin_state: Optional[str] = None,
authentication_type_l1: Optional[str] = None,
authentication_check_l1: Optional[bool] = None,
is_type: Optional[str] = None,
metric_type: Optional[str] = None,
mtu: Optional[int] = None,
name: Optional[str] = None,
net: Optional[str] = None,
passive_default: Optional[str] = None)
func NewIsisVrf(ctx *Context, name string, args IsisVrfArgs, opts ...ResourceOption) (*IsisVrf, error)
public IsisVrf(string name, IsisVrfArgs args, CustomResourceOptions? opts = null)
public IsisVrf(String name, IsisVrfArgs args)
public IsisVrf(String name, IsisVrfArgs args, CustomResourceOptions options)
type: nxos:IsisVrf
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 IsisVrfArgs
- 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 IsisVrfArgs
- 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 IsisVrfArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IsisVrfArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IsisVrfArgs
- 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 isisVrfResource = new Nxos.IsisVrf("isisVrfResource", new()
{
InstanceName = "string",
BanwidthReferenceUnit = "string",
BandwidthReference = 0,
AuthenticationKeyL1 = "string",
AuthenticationKeyL2 = "string",
Device = "string",
AuthenticationTypeL2 = "string",
AuthenticationCheckL2 = false,
AdminState = "string",
AuthenticationTypeL1 = "string",
AuthenticationCheckL1 = false,
IsType = "string",
MetricType = "string",
Mtu = 0,
Name = "string",
Net = "string",
PassiveDefault = "string",
});
example, err := nxos.NewIsisVrf(ctx, "isisVrfResource", &nxos.IsisVrfArgs{
InstanceName: pulumi.String("string"),
BanwidthReferenceUnit: pulumi.String("string"),
BandwidthReference: pulumi.Int(0),
AuthenticationKeyL1: pulumi.String("string"),
AuthenticationKeyL2: pulumi.String("string"),
Device: pulumi.String("string"),
AuthenticationTypeL2: pulumi.String("string"),
AuthenticationCheckL2: pulumi.Bool(false),
AdminState: pulumi.String("string"),
AuthenticationTypeL1: pulumi.String("string"),
AuthenticationCheckL1: pulumi.Bool(false),
IsType: pulumi.String("string"),
MetricType: pulumi.String("string"),
Mtu: pulumi.Int(0),
Name: pulumi.String("string"),
Net: pulumi.String("string"),
PassiveDefault: pulumi.String("string"),
})
var isisVrfResource = new IsisVrf("isisVrfResource", IsisVrfArgs.builder()
.instanceName("string")
.banwidthReferenceUnit("string")
.bandwidthReference(0)
.authenticationKeyL1("string")
.authenticationKeyL2("string")
.device("string")
.authenticationTypeL2("string")
.authenticationCheckL2(false)
.adminState("string")
.authenticationTypeL1("string")
.authenticationCheckL1(false)
.isType("string")
.metricType("string")
.mtu(0)
.name("string")
.net("string")
.passiveDefault("string")
.build());
isis_vrf_resource = nxos.IsisVrf("isisVrfResource",
instance_name="string",
banwidth_reference_unit="string",
bandwidth_reference=0,
authentication_key_l1="string",
authentication_key_l2="string",
device="string",
authentication_type_l2="string",
authentication_check_l2=False,
admin_state="string",
authentication_type_l1="string",
authentication_check_l1=False,
is_type="string",
metric_type="string",
mtu=0,
name="string",
net="string",
passive_default="string")
const isisVrfResource = new nxos.IsisVrf("isisVrfResource", {
instanceName: "string",
banwidthReferenceUnit: "string",
bandwidthReference: 0,
authenticationKeyL1: "string",
authenticationKeyL2: "string",
device: "string",
authenticationTypeL2: "string",
authenticationCheckL2: false,
adminState: "string",
authenticationTypeL1: "string",
authenticationCheckL1: false,
isType: "string",
metricType: "string",
mtu: 0,
name: "string",
net: "string",
passiveDefault: "string",
});
type: nxos:IsisVrf
properties:
adminState: string
authenticationCheckL1: false
authenticationCheckL2: false
authenticationKeyL1: string
authenticationKeyL2: string
authenticationTypeL1: string
authenticationTypeL2: string
bandwidthReference: 0
banwidthReferenceUnit: string
device: string
instanceName: string
isType: string
metricType: string
mtu: 0
name: string
net: string
passiveDefault: string
IsisVrf 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 IsisVrf resource accepts the following input properties:
- Instance
Name string - IS-IS instance name.
- Admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- Authentication
Check boolL1 - Authentication Check for ISIS on Level-1. - Default value:
true
- Authentication
Check boolL2 - Authentication Check for ISIS on Level-2. - Default value:
true
- Authentication
Key stringL1 - Authentication Key for IS-IS on Level-1.
- Authentication
Key stringL2 - Authentication Key for IS-IS on Level-2.
- Authentication
Type stringL1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- Authentication
Type stringL2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- Bandwidth
Reference int - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- Banwidth
Reference stringUnit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- Device string
- A device name from the provider configuration.
- Is
Type string - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- Metric
Type string - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- Mtu int
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- Name string
- VRF name.
- Net string
- Holds IS-IS domain NET (address) value.
- Passive
Default string - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
- Instance
Name string - IS-IS instance name.
- Admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- Authentication
Check boolL1 - Authentication Check for ISIS on Level-1. - Default value:
true
- Authentication
Check boolL2 - Authentication Check for ISIS on Level-2. - Default value:
true
- Authentication
Key stringL1 - Authentication Key for IS-IS on Level-1.
- Authentication
Key stringL2 - Authentication Key for IS-IS on Level-2.
- Authentication
Type stringL1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- Authentication
Type stringL2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- Bandwidth
Reference int - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- Banwidth
Reference stringUnit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- Device string
- A device name from the provider configuration.
- Is
Type string - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- Metric
Type string - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- Mtu int
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- Name string
- VRF name.
- Net string
- Holds IS-IS domain NET (address) value.
- Passive
Default string - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
- instance
Name String - IS-IS instance name.
- admin
State String - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- authentication
Check BooleanL1 - Authentication Check for ISIS on Level-1. - Default value:
true
- authentication
Check BooleanL2 - Authentication Check for ISIS on Level-2. - Default value:
true
- authentication
Key StringL1 - Authentication Key for IS-IS on Level-1.
- authentication
Key StringL2 - Authentication Key for IS-IS on Level-2.
- authentication
Type StringL1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- authentication
Type StringL2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- bandwidth
Reference Integer - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- banwidth
Reference StringUnit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- device String
- A device name from the provider configuration.
- is
Type String - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- metric
Type String - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- mtu Integer
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- name String
- VRF name.
- net String
- Holds IS-IS domain NET (address) value.
- passive
Default String - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
- instance
Name string - IS-IS instance name.
- admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- authentication
Check booleanL1 - Authentication Check for ISIS on Level-1. - Default value:
true
- authentication
Check booleanL2 - Authentication Check for ISIS on Level-2. - Default value:
true
- authentication
Key stringL1 - Authentication Key for IS-IS on Level-1.
- authentication
Key stringL2 - Authentication Key for IS-IS on Level-2.
- authentication
Type stringL1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- authentication
Type stringL2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- bandwidth
Reference number - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- banwidth
Reference stringUnit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- device string
- A device name from the provider configuration.
- is
Type string - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- metric
Type string - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- mtu number
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- name string
- VRF name.
- net string
- Holds IS-IS domain NET (address) value.
- passive
Default string - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
- instance_
name str - IS-IS instance name.
- admin_
state str - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- authentication_
check_ booll1 - Authentication Check for ISIS on Level-1. - Default value:
true
- authentication_
check_ booll2 - Authentication Check for ISIS on Level-2. - Default value:
true
- authentication_
key_ strl1 - Authentication Key for IS-IS on Level-1.
- authentication_
key_ strl2 - Authentication Key for IS-IS on Level-2.
- authentication_
type_ strl1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- authentication_
type_ strl2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- bandwidth_
reference int - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- banwidth_
reference_ strunit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- device str
- A device name from the provider configuration.
- is_
type str - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- metric_
type str - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- mtu int
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- name str
- VRF name.
- net str
- Holds IS-IS domain NET (address) value.
- passive_
default str - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
- instance
Name String - IS-IS instance name.
- admin
State String - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- authentication
Check BooleanL1 - Authentication Check for ISIS on Level-1. - Default value:
true
- authentication
Check BooleanL2 - Authentication Check for ISIS on Level-2. - Default value:
true
- authentication
Key StringL1 - Authentication Key for IS-IS on Level-1.
- authentication
Key StringL2 - Authentication Key for IS-IS on Level-2.
- authentication
Type StringL1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- authentication
Type StringL2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- bandwidth
Reference Number - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- banwidth
Reference StringUnit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- device String
- A device name from the provider configuration.
- is
Type String - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- metric
Type String - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- mtu Number
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- name String
- VRF name.
- net String
- Holds IS-IS domain NET (address) value.
- passive
Default String - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
Outputs
All input properties are implicitly available as output properties. Additionally, the IsisVrf 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 IsisVrf Resource
Get an existing IsisVrf 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?: IsisVrfState, opts?: CustomResourceOptions): IsisVrf
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
admin_state: Optional[str] = None,
authentication_check_l1: Optional[bool] = None,
authentication_check_l2: Optional[bool] = None,
authentication_key_l1: Optional[str] = None,
authentication_key_l2: Optional[str] = None,
authentication_type_l1: Optional[str] = None,
authentication_type_l2: Optional[str] = None,
bandwidth_reference: Optional[int] = None,
banwidth_reference_unit: Optional[str] = None,
device: Optional[str] = None,
instance_name: Optional[str] = None,
is_type: Optional[str] = None,
metric_type: Optional[str] = None,
mtu: Optional[int] = None,
name: Optional[str] = None,
net: Optional[str] = None,
passive_default: Optional[str] = None) -> IsisVrf
func GetIsisVrf(ctx *Context, name string, id IDInput, state *IsisVrfState, opts ...ResourceOption) (*IsisVrf, error)
public static IsisVrf Get(string name, Input<string> id, IsisVrfState? state, CustomResourceOptions? opts = null)
public static IsisVrf get(String name, Output<String> id, IsisVrfState 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.
- Admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- Authentication
Check boolL1 - Authentication Check for ISIS on Level-1. - Default value:
true
- Authentication
Check boolL2 - Authentication Check for ISIS on Level-2. - Default value:
true
- Authentication
Key stringL1 - Authentication Key for IS-IS on Level-1.
- Authentication
Key stringL2 - Authentication Key for IS-IS on Level-2.
- Authentication
Type stringL1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- Authentication
Type stringL2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- Bandwidth
Reference int - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- Banwidth
Reference stringUnit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- Device string
- A device name from the provider configuration.
- Instance
Name string - IS-IS instance name.
- Is
Type string - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- Metric
Type string - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- Mtu int
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- Name string
- VRF name.
- Net string
- Holds IS-IS domain NET (address) value.
- Passive
Default string - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
- Admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- Authentication
Check boolL1 - Authentication Check for ISIS on Level-1. - Default value:
true
- Authentication
Check boolL2 - Authentication Check for ISIS on Level-2. - Default value:
true
- Authentication
Key stringL1 - Authentication Key for IS-IS on Level-1.
- Authentication
Key stringL2 - Authentication Key for IS-IS on Level-2.
- Authentication
Type stringL1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- Authentication
Type stringL2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- Bandwidth
Reference int - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- Banwidth
Reference stringUnit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- Device string
- A device name from the provider configuration.
- Instance
Name string - IS-IS instance name.
- Is
Type string - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- Metric
Type string - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- Mtu int
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- Name string
- VRF name.
- Net string
- Holds IS-IS domain NET (address) value.
- Passive
Default string - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
- admin
State String - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- authentication
Check BooleanL1 - Authentication Check for ISIS on Level-1. - Default value:
true
- authentication
Check BooleanL2 - Authentication Check for ISIS on Level-2. - Default value:
true
- authentication
Key StringL1 - Authentication Key for IS-IS on Level-1.
- authentication
Key StringL2 - Authentication Key for IS-IS on Level-2.
- authentication
Type StringL1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- authentication
Type StringL2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- bandwidth
Reference Integer - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- banwidth
Reference StringUnit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- device String
- A device name from the provider configuration.
- instance
Name String - IS-IS instance name.
- is
Type String - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- metric
Type String - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- mtu Integer
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- name String
- VRF name.
- net String
- Holds IS-IS domain NET (address) value.
- passive
Default String - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
- admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- authentication
Check booleanL1 - Authentication Check for ISIS on Level-1. - Default value:
true
- authentication
Check booleanL2 - Authentication Check for ISIS on Level-2. - Default value:
true
- authentication
Key stringL1 - Authentication Key for IS-IS on Level-1.
- authentication
Key stringL2 - Authentication Key for IS-IS on Level-2.
- authentication
Type stringL1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- authentication
Type stringL2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- bandwidth
Reference number - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- banwidth
Reference stringUnit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- device string
- A device name from the provider configuration.
- instance
Name string - IS-IS instance name.
- is
Type string - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- metric
Type string - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- mtu number
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- name string
- VRF name.
- net string
- Holds IS-IS domain NET (address) value.
- passive
Default string - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
- admin_
state str - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- authentication_
check_ booll1 - Authentication Check for ISIS on Level-1. - Default value:
true
- authentication_
check_ booll2 - Authentication Check for ISIS on Level-2. - Default value:
true
- authentication_
key_ strl1 - Authentication Key for IS-IS on Level-1.
- authentication_
key_ strl2 - Authentication Key for IS-IS on Level-2.
- authentication_
type_ strl1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- authentication_
type_ strl2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- bandwidth_
reference int - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- banwidth_
reference_ strunit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- device str
- A device name from the provider configuration.
- instance_
name str - IS-IS instance name.
- is_
type str - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- metric_
type str - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- mtu int
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- name str
- VRF name.
- net str
- Holds IS-IS domain NET (address) value.
- passive_
default str - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
- admin
State String - Administrative state. - Choices:
enabled
,disabled
- Default value:enabled
- authentication
Check BooleanL1 - Authentication Check for ISIS on Level-1. - Default value:
true
- authentication
Check BooleanL2 - Authentication Check for ISIS on Level-2. - Default value:
true
- authentication
Key StringL1 - Authentication Key for IS-IS on Level-1.
- authentication
Key StringL2 - Authentication Key for IS-IS on Level-2.
- authentication
Type StringL1 - IS-IS Authentication-Type for Level-1. - Choices:
clear
,md5
,unknown
- Default value:unknown
- authentication
Type StringL2 - IS-IS Authentication-Type for Level-2. - Choices:
clear
,md5
,unknown
- Default value:unknown
- bandwidth
Reference Number - The IS-IS domain bandwidth reference. This sets the default reference bandwidth used for calculating the IS-IS cost
metric. - Range:
0
-4294967295
- Default value:40000
- banwidth
Reference StringUnit - Bandwidth reference unit. - Choices:
mbps
,gbps
- Default value:mbps
- device String
- A device name from the provider configuration.
- instance
Name String - IS-IS instance name.
- is
Type String - IS-IS domain type. - Choices:
l1
,l2
,l12
- Default value:l12
- metric
Type String - IS-IS metric type. - Choices:
narrow
,wide
,transition
- Default value:wide
- mtu Number
- The configuration of link-state packet (LSP) maximum transmission units (MTU) is supported. You can enable up to 4352
bytes. - Range:
256
-4352
- Default value:1492
- name String
- VRF name.
- net String
- Holds IS-IS domain NET (address) value.
- passive
Default String - IS-IS Domain passive-interface default level. - Choices:
l1
,l2
,l12
,unknown
- Default value:unknown
Import
$ pulumi import nxos:index/isisVrf:IsisVrf example "sys/isis/inst-[ISIS1]/dom-[default]"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- nxos lbrlabs/pulumi-nxos
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nxos
Terraform Provider.