1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. EigrpFeatureTemplate
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

sdwan.EigrpFeatureTemplate

Explore with Pulumi AI

This resource can manage a eigrp feature template.

  • Minimum SD-WAN Manager version: 15.0.0

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.EigrpFeatureTemplate;
import com.pulumi.sdwan.EigrpFeatureTemplateArgs;
import com.pulumi.sdwan.inputs.EigrpFeatureTemplateAddressFamilyArgs;
import com.pulumi.sdwan.inputs.EigrpFeatureTemplateInterfaceArgs;
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 EigrpFeatureTemplate("example", EigrpFeatureTemplateArgs.builder()
            .name("Example")
            .description("My Example")
            .deviceTypes("vedge-C8000V")
            .asNumber(1)
            .addressFamilies(EigrpFeatureTemplateAddressFamilyArgs.builder()
                .type("ipv4")
                .redistributes(EigrpFeatureTemplateAddressFamilyRedistributeArgs.builder()
                    .protocol("bgp")
                    .routePolicy("1.2.3.4")
                    .build())
                .networks(EigrpFeatureTemplateAddressFamilyNetworkArgs.builder()
                    .prefix("1.2.3.4/24")
                    .build())
                .build())
            .helloInterval(5)
            .holdTime(15)
            .routePolicyName("RP1")
            .filter(false)
            .authenticationType("hmac-sha-256")
            .hmacAuthenticationKey("myAuthKey")
            .interfaces(EigrpFeatureTemplateInterfaceArgs.builder()
                .interface_name("Ethernet1")
                .shutdown(false)
                .summary_addresses(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: sdwan:EigrpFeatureTemplate
    properties:
      name: Example
      description: My Example
      deviceTypes:
        - vedge-C8000V
      asNumber: 1
      addressFamilies:
        - type: ipv4
          redistributes:
            - protocol: bgp
              routePolicy: 1.2.3.4
          networks:
            - prefix: 1.2.3.4/24
      helloInterval: 5
      holdTime: 15
      routePolicyName: RP1
      filter: false
      authenticationType: hmac-sha-256
      hmacAuthenticationKey: myAuthKey
      interfaces:
        - interface_name: Ethernet1
          shutdown: false
          summary_addresses:
            - prefix: 1.2.3.4/24
Copy

Create EigrpFeatureTemplate Resource

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

Constructor syntax

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

@overload
def EigrpFeatureTemplate(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         description: Optional[str] = None,
                         device_types: Optional[Sequence[str]] = None,
                         hello_interval_variable: Optional[str] = None,
                         hmac_authentication_key: Optional[str] = None,
                         authentication_type_variable: Optional[str] = None,
                         as_number_variable: Optional[str] = None,
                         as_number: Optional[int] = None,
                         filter: Optional[bool] = None,
                         filter_variable: Optional[str] = None,
                         hello_interval: Optional[int] = None,
                         address_families: Optional[Sequence[EigrpFeatureTemplateAddressFamilyArgs]] = None,
                         authentication_type: Optional[str] = None,
                         hmac_authentication_key_variable: Optional[str] = None,
                         hold_time: Optional[int] = None,
                         hold_time_variable: Optional[str] = None,
                         interfaces: Optional[Sequence[EigrpFeatureTemplateInterfaceArgs]] = None,
                         keys: Optional[Sequence[EigrpFeatureTemplateKeyArgs]] = None,
                         name: Optional[str] = None,
                         route_policy_name: Optional[str] = None,
                         route_policy_name_variable: Optional[str] = None)
func NewEigrpFeatureTemplate(ctx *Context, name string, args EigrpFeatureTemplateArgs, opts ...ResourceOption) (*EigrpFeatureTemplate, error)
public EigrpFeatureTemplate(string name, EigrpFeatureTemplateArgs args, CustomResourceOptions? opts = null)
public EigrpFeatureTemplate(String name, EigrpFeatureTemplateArgs args)
public EigrpFeatureTemplate(String name, EigrpFeatureTemplateArgs args, CustomResourceOptions options)
type: sdwan:EigrpFeatureTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. EigrpFeatureTemplateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. EigrpFeatureTemplateArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. EigrpFeatureTemplateArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. EigrpFeatureTemplateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. EigrpFeatureTemplateArgs
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 eigrpFeatureTemplateResource = new Sdwan.EigrpFeatureTemplate("eigrpFeatureTemplateResource", new()
{
    Description = "string",
    DeviceTypes = new[]
    {
        "string",
    },
    HelloIntervalVariable = "string",
    HmacAuthenticationKey = "string",
    AuthenticationTypeVariable = "string",
    AsNumberVariable = "string",
    AsNumber = 0,
    Filter = false,
    FilterVariable = "string",
    HelloInterval = 0,
    AddressFamilies = new[]
    {
        new Sdwan.Inputs.EigrpFeatureTemplateAddressFamilyArgs
        {
            Networks = new[]
            {
                new Sdwan.Inputs.EigrpFeatureTemplateAddressFamilyNetworkArgs
                {
                    Optional = false,
                    Prefix = "string",
                    PrefixVariable = "string",
                },
            },
            Optional = false,
            Redistributes = new[]
            {
                new Sdwan.Inputs.EigrpFeatureTemplateAddressFamilyRedistributeArgs
                {
                    Optional = false,
                    Protocol = "string",
                    ProtocolVariable = "string",
                    RoutePolicy = "string",
                    RoutePolicyVariable = "string",
                },
            },
            Type = "string",
        },
    },
    AuthenticationType = "string",
    HmacAuthenticationKeyVariable = "string",
    HoldTime = 0,
    HoldTimeVariable = "string",
    Interfaces = new[]
    {
        new Sdwan.Inputs.EigrpFeatureTemplateInterfaceArgs
        {
            InterfaceName = "string",
            InterfaceNameVariable = "string",
            Optional = false,
            Shutdown = false,
            ShutdownVariable = "string",
            SummaryAddresses = new[]
            {
                new Sdwan.Inputs.EigrpFeatureTemplateInterfaceSummaryAddressArgs
                {
                    Optional = false,
                    Prefix = "string",
                    PrefixVariable = "string",
                },
            },
        },
    },
    Keys = new[]
    {
        new Sdwan.Inputs.EigrpFeatureTemplateKeyArgs
        {
            Md5AuthenticationKey = "string",
            Md5AuthenticationKeyVariable = "string",
            Md5KeyId = 0,
            Md5KeyIdVariable = "string",
            Optional = false,
        },
    },
    Name = "string",
    RoutePolicyName = "string",
    RoutePolicyNameVariable = "string",
});
Copy
example, err := sdwan.NewEigrpFeatureTemplate(ctx, "eigrpFeatureTemplateResource", &sdwan.EigrpFeatureTemplateArgs{
	Description: pulumi.String("string"),
	DeviceTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	HelloIntervalVariable:      pulumi.String("string"),
	HmacAuthenticationKey:      pulumi.String("string"),
	AuthenticationTypeVariable: pulumi.String("string"),
	AsNumberVariable:           pulumi.String("string"),
	AsNumber:                   pulumi.Int(0),
	Filter:                     pulumi.Bool(false),
	FilterVariable:             pulumi.String("string"),
	HelloInterval:              pulumi.Int(0),
	AddressFamilies: sdwan.EigrpFeatureTemplateAddressFamilyArray{
		&sdwan.EigrpFeatureTemplateAddressFamilyArgs{
			Networks: sdwan.EigrpFeatureTemplateAddressFamilyNetworkArray{
				&sdwan.EigrpFeatureTemplateAddressFamilyNetworkArgs{
					Optional:       pulumi.Bool(false),
					Prefix:         pulumi.String("string"),
					PrefixVariable: pulumi.String("string"),
				},
			},
			Optional: pulumi.Bool(false),
			Redistributes: sdwan.EigrpFeatureTemplateAddressFamilyRedistributeArray{
				&sdwan.EigrpFeatureTemplateAddressFamilyRedistributeArgs{
					Optional:            pulumi.Bool(false),
					Protocol:            pulumi.String("string"),
					ProtocolVariable:    pulumi.String("string"),
					RoutePolicy:         pulumi.String("string"),
					RoutePolicyVariable: pulumi.String("string"),
				},
			},
			Type: pulumi.String("string"),
		},
	},
	AuthenticationType:            pulumi.String("string"),
	HmacAuthenticationKeyVariable: pulumi.String("string"),
	HoldTime:                      pulumi.Int(0),
	HoldTimeVariable:              pulumi.String("string"),
	Interfaces: sdwan.EigrpFeatureTemplateInterfaceArray{
		&sdwan.EigrpFeatureTemplateInterfaceArgs{
			InterfaceName:         pulumi.String("string"),
			InterfaceNameVariable: pulumi.String("string"),
			Optional:              pulumi.Bool(false),
			Shutdown:              pulumi.Bool(false),
			ShutdownVariable:      pulumi.String("string"),
			SummaryAddresses: sdwan.EigrpFeatureTemplateInterfaceSummaryAddressArray{
				&sdwan.EigrpFeatureTemplateInterfaceSummaryAddressArgs{
					Optional:       pulumi.Bool(false),
					Prefix:         pulumi.String("string"),
					PrefixVariable: pulumi.String("string"),
				},
			},
		},
	},
	Keys: sdwan.EigrpFeatureTemplateKeyArray{
		&sdwan.EigrpFeatureTemplateKeyArgs{
			Md5AuthenticationKey:         pulumi.String("string"),
			Md5AuthenticationKeyVariable: pulumi.String("string"),
			Md5KeyId:                     pulumi.Int(0),
			Md5KeyIdVariable:             pulumi.String("string"),
			Optional:                     pulumi.Bool(false),
		},
	},
	Name:                    pulumi.String("string"),
	RoutePolicyName:         pulumi.String("string"),
	RoutePolicyNameVariable: pulumi.String("string"),
})
Copy
var eigrpFeatureTemplateResource = new EigrpFeatureTemplate("eigrpFeatureTemplateResource", EigrpFeatureTemplateArgs.builder()
    .description("string")
    .deviceTypes("string")
    .helloIntervalVariable("string")
    .hmacAuthenticationKey("string")
    .authenticationTypeVariable("string")
    .asNumberVariable("string")
    .asNumber(0)
    .filter(false)
    .filterVariable("string")
    .helloInterval(0)
    .addressFamilies(EigrpFeatureTemplateAddressFamilyArgs.builder()
        .networks(EigrpFeatureTemplateAddressFamilyNetworkArgs.builder()
            .optional(false)
            .prefix("string")
            .prefixVariable("string")
            .build())
        .optional(false)
        .redistributes(EigrpFeatureTemplateAddressFamilyRedistributeArgs.builder()
            .optional(false)
            .protocol("string")
            .protocolVariable("string")
            .routePolicy("string")
            .routePolicyVariable("string")
            .build())
        .type("string")
        .build())
    .authenticationType("string")
    .hmacAuthenticationKeyVariable("string")
    .holdTime(0)
    .holdTimeVariable("string")
    .interfaces(EigrpFeatureTemplateInterfaceArgs.builder()
        .interfaceName("string")
        .interfaceNameVariable("string")
        .optional(false)
        .shutdown(false)
        .shutdownVariable("string")
        .summaryAddresses(EigrpFeatureTemplateInterfaceSummaryAddressArgs.builder()
            .optional(false)
            .prefix("string")
            .prefixVariable("string")
            .build())
        .build())
    .keys(EigrpFeatureTemplateKeyArgs.builder()
        .md5AuthenticationKey("string")
        .md5AuthenticationKeyVariable("string")
        .md5KeyId(0)
        .md5KeyIdVariable("string")
        .optional(false)
        .build())
    .name("string")
    .routePolicyName("string")
    .routePolicyNameVariable("string")
    .build());
Copy
eigrp_feature_template_resource = sdwan.EigrpFeatureTemplate("eigrpFeatureTemplateResource",
    description="string",
    device_types=["string"],
    hello_interval_variable="string",
    hmac_authentication_key="string",
    authentication_type_variable="string",
    as_number_variable="string",
    as_number=0,
    filter=False,
    filter_variable="string",
    hello_interval=0,
    address_families=[{
        "networks": [{
            "optional": False,
            "prefix": "string",
            "prefix_variable": "string",
        }],
        "optional": False,
        "redistributes": [{
            "optional": False,
            "protocol": "string",
            "protocol_variable": "string",
            "route_policy": "string",
            "route_policy_variable": "string",
        }],
        "type": "string",
    }],
    authentication_type="string",
    hmac_authentication_key_variable="string",
    hold_time=0,
    hold_time_variable="string",
    interfaces=[{
        "interface_name": "string",
        "interface_name_variable": "string",
        "optional": False,
        "shutdown": False,
        "shutdown_variable": "string",
        "summary_addresses": [{
            "optional": False,
            "prefix": "string",
            "prefix_variable": "string",
        }],
    }],
    keys=[{
        "md5_authentication_key": "string",
        "md5_authentication_key_variable": "string",
        "md5_key_id": 0,
        "md5_key_id_variable": "string",
        "optional": False,
    }],
    name="string",
    route_policy_name="string",
    route_policy_name_variable="string")
Copy
const eigrpFeatureTemplateResource = new sdwan.EigrpFeatureTemplate("eigrpFeatureTemplateResource", {
    description: "string",
    deviceTypes: ["string"],
    helloIntervalVariable: "string",
    hmacAuthenticationKey: "string",
    authenticationTypeVariable: "string",
    asNumberVariable: "string",
    asNumber: 0,
    filter: false,
    filterVariable: "string",
    helloInterval: 0,
    addressFamilies: [{
        networks: [{
            optional: false,
            prefix: "string",
            prefixVariable: "string",
        }],
        optional: false,
        redistributes: [{
            optional: false,
            protocol: "string",
            protocolVariable: "string",
            routePolicy: "string",
            routePolicyVariable: "string",
        }],
        type: "string",
    }],
    authenticationType: "string",
    hmacAuthenticationKeyVariable: "string",
    holdTime: 0,
    holdTimeVariable: "string",
    interfaces: [{
        interfaceName: "string",
        interfaceNameVariable: "string",
        optional: false,
        shutdown: false,
        shutdownVariable: "string",
        summaryAddresses: [{
            optional: false,
            prefix: "string",
            prefixVariable: "string",
        }],
    }],
    keys: [{
        md5AuthenticationKey: "string",
        md5AuthenticationKeyVariable: "string",
        md5KeyId: 0,
        md5KeyIdVariable: "string",
        optional: false,
    }],
    name: "string",
    routePolicyName: "string",
    routePolicyNameVariable: "string",
});
Copy
type: sdwan:EigrpFeatureTemplate
properties:
    addressFamilies:
        - networks:
            - optional: false
              prefix: string
              prefixVariable: string
          optional: false
          redistributes:
            - optional: false
              protocol: string
              protocolVariable: string
              routePolicy: string
              routePolicyVariable: string
          type: string
    asNumber: 0
    asNumberVariable: string
    authenticationType: string
    authenticationTypeVariable: string
    description: string
    deviceTypes:
        - string
    filter: false
    filterVariable: string
    helloInterval: 0
    helloIntervalVariable: string
    hmacAuthenticationKey: string
    hmacAuthenticationKeyVariable: string
    holdTime: 0
    holdTimeVariable: string
    interfaces:
        - interfaceName: string
          interfaceNameVariable: string
          optional: false
          shutdown: false
          shutdownVariable: string
          summaryAddresses:
            - optional: false
              prefix: string
              prefixVariable: string
    keys:
        - md5AuthenticationKey: string
          md5AuthenticationKeyVariable: string
          md5KeyId: 0
          md5KeyIdVariable: string
          optional: false
    name: string
    routePolicyName: string
    routePolicyNameVariable: string
Copy

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

Description This property is required. string
The description of the feature template
DeviceTypes This property is required. List<string>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
AddressFamilies List<EigrpFeatureTemplateAddressFamily>
Set EIGRP address family
AsNumber int
Set autonomous system ID <1..65535> - Range: 1-65535
AsNumberVariable string
Variable name
AuthenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
AuthenticationTypeVariable string
Variable name
Filter bool
Selective route download - Default value: false
FilterVariable string
Variable name
HelloInterval int
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
HelloIntervalVariable string
Variable name
HmacAuthenticationKey string
Set hmac-sha-256 authentication key
HmacAuthenticationKeyVariable string
Variable name
HoldTime int
Set EIGRP hold time - Range: 0-65535 - Default value: 15
HoldTimeVariable string
Variable name
Interfaces List<EigrpFeatureTemplateInterface>
Configure IPv4 Static Routes
Keys List<EigrpFeatureTemplateKey>
Set keychain name
Name string
The name of the feature template
RoutePolicyName string
Configure policy to apply to prefixes received from EIGRP neighbor
RoutePolicyNameVariable string
Variable name
Description This property is required. string
The description of the feature template
DeviceTypes This property is required. []string
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
AddressFamilies []EigrpFeatureTemplateAddressFamilyArgs
Set EIGRP address family
AsNumber int
Set autonomous system ID <1..65535> - Range: 1-65535
AsNumberVariable string
Variable name
AuthenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
AuthenticationTypeVariable string
Variable name
Filter bool
Selective route download - Default value: false
FilterVariable string
Variable name
HelloInterval int
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
HelloIntervalVariable string
Variable name
HmacAuthenticationKey string
Set hmac-sha-256 authentication key
HmacAuthenticationKeyVariable string
Variable name
HoldTime int
Set EIGRP hold time - Range: 0-65535 - Default value: 15
HoldTimeVariable string
Variable name
Interfaces []EigrpFeatureTemplateInterfaceArgs
Configure IPv4 Static Routes
Keys []EigrpFeatureTemplateKeyArgs
Set keychain name
Name string
The name of the feature template
RoutePolicyName string
Configure policy to apply to prefixes received from EIGRP neighbor
RoutePolicyNameVariable string
Variable name
description This property is required. String
The description of the feature template
deviceTypes This property is required. List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
addressFamilies List<EigrpFeatureTemplateAddressFamily>
Set EIGRP address family
asNumber Integer
Set autonomous system ID <1..65535> - Range: 1-65535
asNumberVariable String
Variable name
authenticationType String
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable String
Variable name
filter Boolean
Selective route download - Default value: false
filterVariable String
Variable name
helloInterval Integer
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
helloIntervalVariable String
Variable name
hmacAuthenticationKey String
Set hmac-sha-256 authentication key
hmacAuthenticationKeyVariable String
Variable name
holdTime Integer
Set EIGRP hold time - Range: 0-65535 - Default value: 15
holdTimeVariable String
Variable name
interfaces List<EigrpFeatureTemplateInterface>
Configure IPv4 Static Routes
keys List<EigrpFeatureTemplateKey>
Set keychain name
name String
The name of the feature template
routePolicyName String
Configure policy to apply to prefixes received from EIGRP neighbor
routePolicyNameVariable String
Variable name
description This property is required. string
The description of the feature template
deviceTypes This property is required. string[]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
addressFamilies EigrpFeatureTemplateAddressFamily[]
Set EIGRP address family
asNumber number
Set autonomous system ID <1..65535> - Range: 1-65535
asNumberVariable string
Variable name
authenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable string
Variable name
filter boolean
Selective route download - Default value: false
filterVariable string
Variable name
helloInterval number
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
helloIntervalVariable string
Variable name
hmacAuthenticationKey string
Set hmac-sha-256 authentication key
hmacAuthenticationKeyVariable string
Variable name
holdTime number
Set EIGRP hold time - Range: 0-65535 - Default value: 15
holdTimeVariable string
Variable name
interfaces EigrpFeatureTemplateInterface[]
Configure IPv4 Static Routes
keys EigrpFeatureTemplateKey[]
Set keychain name
name string
The name of the feature template
routePolicyName string
Configure policy to apply to prefixes received from EIGRP neighbor
routePolicyNameVariable string
Variable name
description This property is required. str
The description of the feature template
device_types This property is required. Sequence[str]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
address_families Sequence[EigrpFeatureTemplateAddressFamilyArgs]
Set EIGRP address family
as_number int
Set autonomous system ID <1..65535> - Range: 1-65535
as_number_variable str
Variable name
authentication_type str
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authentication_type_variable str
Variable name
filter bool
Selective route download - Default value: false
filter_variable str
Variable name
hello_interval int
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
hello_interval_variable str
Variable name
hmac_authentication_key str
Set hmac-sha-256 authentication key
hmac_authentication_key_variable str
Variable name
hold_time int
Set EIGRP hold time - Range: 0-65535 - Default value: 15
hold_time_variable str
Variable name
interfaces Sequence[EigrpFeatureTemplateInterfaceArgs]
Configure IPv4 Static Routes
keys Sequence[EigrpFeatureTemplateKeyArgs]
Set keychain name
name str
The name of the feature template
route_policy_name str
Configure policy to apply to prefixes received from EIGRP neighbor
route_policy_name_variable str
Variable name
description This property is required. String
The description of the feature template
deviceTypes This property is required. List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
addressFamilies List<Property Map>
Set EIGRP address family
asNumber Number
Set autonomous system ID <1..65535> - Range: 1-65535
asNumberVariable String
Variable name
authenticationType String
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable String
Variable name
filter Boolean
Selective route download - Default value: false
filterVariable String
Variable name
helloInterval Number
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
helloIntervalVariable String
Variable name
hmacAuthenticationKey String
Set hmac-sha-256 authentication key
hmacAuthenticationKeyVariable String
Variable name
holdTime Number
Set EIGRP hold time - Range: 0-65535 - Default value: 15
holdTimeVariable String
Variable name
interfaces List<Property Map>
Configure IPv4 Static Routes
keys List<Property Map>
Set keychain name
name String
The name of the feature template
routePolicyName String
Configure policy to apply to prefixes received from EIGRP neighbor
routePolicyNameVariable String
Variable name

Outputs

All input properties are implicitly available as output properties. Additionally, the EigrpFeatureTemplate resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
TemplateType string
The template type
Version int
The version of the feature template
Id string
The provider-assigned unique ID for this managed resource.
TemplateType string
The template type
Version int
The version of the feature template
id String
The provider-assigned unique ID for this managed resource.
templateType String
The template type
version Integer
The version of the feature template
id string
The provider-assigned unique ID for this managed resource.
templateType string
The template type
version number
The version of the feature template
id str
The provider-assigned unique ID for this managed resource.
template_type str
The template type
version int
The version of the feature template
id String
The provider-assigned unique ID for this managed resource.
templateType String
The template type
version Number
The version of the feature template

Look up Existing EigrpFeatureTemplate Resource

Get an existing EigrpFeatureTemplate 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?: EigrpFeatureTemplateState, opts?: CustomResourceOptions): EigrpFeatureTemplate
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        address_families: Optional[Sequence[EigrpFeatureTemplateAddressFamilyArgs]] = None,
        as_number: Optional[int] = None,
        as_number_variable: Optional[str] = None,
        authentication_type: Optional[str] = None,
        authentication_type_variable: Optional[str] = None,
        description: Optional[str] = None,
        device_types: Optional[Sequence[str]] = None,
        filter: Optional[bool] = None,
        filter_variable: Optional[str] = None,
        hello_interval: Optional[int] = None,
        hello_interval_variable: Optional[str] = None,
        hmac_authentication_key: Optional[str] = None,
        hmac_authentication_key_variable: Optional[str] = None,
        hold_time: Optional[int] = None,
        hold_time_variable: Optional[str] = None,
        interfaces: Optional[Sequence[EigrpFeatureTemplateInterfaceArgs]] = None,
        keys: Optional[Sequence[EigrpFeatureTemplateKeyArgs]] = None,
        name: Optional[str] = None,
        route_policy_name: Optional[str] = None,
        route_policy_name_variable: Optional[str] = None,
        template_type: Optional[str] = None,
        version: Optional[int] = None) -> EigrpFeatureTemplate
func GetEigrpFeatureTemplate(ctx *Context, name string, id IDInput, state *EigrpFeatureTemplateState, opts ...ResourceOption) (*EigrpFeatureTemplate, error)
public static EigrpFeatureTemplate Get(string name, Input<string> id, EigrpFeatureTemplateState? state, CustomResourceOptions? opts = null)
public static EigrpFeatureTemplate get(String name, Output<String> id, EigrpFeatureTemplateState state, CustomResourceOptions options)
resources:  _:    type: sdwan:EigrpFeatureTemplate    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AddressFamilies List<EigrpFeatureTemplateAddressFamily>
Set EIGRP address family
AsNumber int
Set autonomous system ID <1..65535> - Range: 1-65535
AsNumberVariable string
Variable name
AuthenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
AuthenticationTypeVariable string
Variable name
Description string
The description of the feature template
DeviceTypes List<string>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
Filter bool
Selective route download - Default value: false
FilterVariable string
Variable name
HelloInterval int
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
HelloIntervalVariable string
Variable name
HmacAuthenticationKey string
Set hmac-sha-256 authentication key
HmacAuthenticationKeyVariable string
Variable name
HoldTime int
Set EIGRP hold time - Range: 0-65535 - Default value: 15
HoldTimeVariable string
Variable name
Interfaces List<EigrpFeatureTemplateInterface>
Configure IPv4 Static Routes
Keys List<EigrpFeatureTemplateKey>
Set keychain name
Name string
The name of the feature template
RoutePolicyName string
Configure policy to apply to prefixes received from EIGRP neighbor
RoutePolicyNameVariable string
Variable name
TemplateType string
The template type
Version int
The version of the feature template
AddressFamilies []EigrpFeatureTemplateAddressFamilyArgs
Set EIGRP address family
AsNumber int
Set autonomous system ID <1..65535> - Range: 1-65535
AsNumberVariable string
Variable name
AuthenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
AuthenticationTypeVariable string
Variable name
Description string
The description of the feature template
DeviceTypes []string
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
Filter bool
Selective route download - Default value: false
FilterVariable string
Variable name
HelloInterval int
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
HelloIntervalVariable string
Variable name
HmacAuthenticationKey string
Set hmac-sha-256 authentication key
HmacAuthenticationKeyVariable string
Variable name
HoldTime int
Set EIGRP hold time - Range: 0-65535 - Default value: 15
HoldTimeVariable string
Variable name
Interfaces []EigrpFeatureTemplateInterfaceArgs
Configure IPv4 Static Routes
Keys []EigrpFeatureTemplateKeyArgs
Set keychain name
Name string
The name of the feature template
RoutePolicyName string
Configure policy to apply to prefixes received from EIGRP neighbor
RoutePolicyNameVariable string
Variable name
TemplateType string
The template type
Version int
The version of the feature template
addressFamilies List<EigrpFeatureTemplateAddressFamily>
Set EIGRP address family
asNumber Integer
Set autonomous system ID <1..65535> - Range: 1-65535
asNumberVariable String
Variable name
authenticationType String
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable String
Variable name
description String
The description of the feature template
deviceTypes List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
filter Boolean
Selective route download - Default value: false
filterVariable String
Variable name
helloInterval Integer
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
helloIntervalVariable String
Variable name
hmacAuthenticationKey String
Set hmac-sha-256 authentication key
hmacAuthenticationKeyVariable String
Variable name
holdTime Integer
Set EIGRP hold time - Range: 0-65535 - Default value: 15
holdTimeVariable String
Variable name
interfaces List<EigrpFeatureTemplateInterface>
Configure IPv4 Static Routes
keys List<EigrpFeatureTemplateKey>
Set keychain name
name String
The name of the feature template
routePolicyName String
Configure policy to apply to prefixes received from EIGRP neighbor
routePolicyNameVariable String
Variable name
templateType String
The template type
version Integer
The version of the feature template
addressFamilies EigrpFeatureTemplateAddressFamily[]
Set EIGRP address family
asNumber number
Set autonomous system ID <1..65535> - Range: 1-65535
asNumberVariable string
Variable name
authenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable string
Variable name
description string
The description of the feature template
deviceTypes string[]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
filter boolean
Selective route download - Default value: false
filterVariable string
Variable name
helloInterval number
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
helloIntervalVariable string
Variable name
hmacAuthenticationKey string
Set hmac-sha-256 authentication key
hmacAuthenticationKeyVariable string
Variable name
holdTime number
Set EIGRP hold time - Range: 0-65535 - Default value: 15
holdTimeVariable string
Variable name
interfaces EigrpFeatureTemplateInterface[]
Configure IPv4 Static Routes
keys EigrpFeatureTemplateKey[]
Set keychain name
name string
The name of the feature template
routePolicyName string
Configure policy to apply to prefixes received from EIGRP neighbor
routePolicyNameVariable string
Variable name
templateType string
The template type
version number
The version of the feature template
address_families Sequence[EigrpFeatureTemplateAddressFamilyArgs]
Set EIGRP address family
as_number int
Set autonomous system ID <1..65535> - Range: 1-65535
as_number_variable str
Variable name
authentication_type str
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authentication_type_variable str
Variable name
description str
The description of the feature template
device_types Sequence[str]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
filter bool
Selective route download - Default value: false
filter_variable str
Variable name
hello_interval int
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
hello_interval_variable str
Variable name
hmac_authentication_key str
Set hmac-sha-256 authentication key
hmac_authentication_key_variable str
Variable name
hold_time int
Set EIGRP hold time - Range: 0-65535 - Default value: 15
hold_time_variable str
Variable name
interfaces Sequence[EigrpFeatureTemplateInterfaceArgs]
Configure IPv4 Static Routes
keys Sequence[EigrpFeatureTemplateKeyArgs]
Set keychain name
name str
The name of the feature template
route_policy_name str
Configure policy to apply to prefixes received from EIGRP neighbor
route_policy_name_variable str
Variable name
template_type str
The template type
version int
The version of the feature template
addressFamilies List<Property Map>
Set EIGRP address family
asNumber Number
Set autonomous system ID <1..65535> - Range: 1-65535
asNumberVariable String
Variable name
authenticationType String
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable String
Variable name
description String
The description of the feature template
deviceTypes List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
filter Boolean
Selective route download - Default value: false
filterVariable String
Variable name
helloInterval Number
Set EIGRP hello interval - Range: 0-65535 - Default value: 5
helloIntervalVariable String
Variable name
hmacAuthenticationKey String
Set hmac-sha-256 authentication key
hmacAuthenticationKeyVariable String
Variable name
holdTime Number
Set EIGRP hold time - Range: 0-65535 - Default value: 15
holdTimeVariable String
Variable name
interfaces List<Property Map>
Configure IPv4 Static Routes
keys List<Property Map>
Set keychain name
name String
The name of the feature template
routePolicyName String
Configure policy to apply to prefixes received from EIGRP neighbor
routePolicyNameVariable String
Variable name
templateType String
The template type
version Number
The version of the feature template

Supporting Types

EigrpFeatureTemplateAddressFamily
, EigrpFeatureTemplateAddressFamilyArgs

Networks List<EigrpFeatureTemplateAddressFamilyNetwork>
Configure the networks for EIGRP to advertise
Optional bool
Indicates if list item is considered optional.
Redistributes List<EigrpFeatureTemplateAddressFamilyRedistribute>
Redistribute routes into EIGRP
Type string
Set EIGRP address family

  • Choices: ipv4
  • Default value: ipv4
Networks []EigrpFeatureTemplateAddressFamilyNetwork
Configure the networks for EIGRP to advertise
Optional bool
Indicates if list item is considered optional.
Redistributes []EigrpFeatureTemplateAddressFamilyRedistribute
Redistribute routes into EIGRP
Type string
Set EIGRP address family

  • Choices: ipv4
  • Default value: ipv4
networks List<EigrpFeatureTemplateAddressFamilyNetwork>
Configure the networks for EIGRP to advertise
optional Boolean
Indicates if list item is considered optional.
redistributes List<EigrpFeatureTemplateAddressFamilyRedistribute>
Redistribute routes into EIGRP
type String
Set EIGRP address family

  • Choices: ipv4
  • Default value: ipv4
networks EigrpFeatureTemplateAddressFamilyNetwork[]
Configure the networks for EIGRP to advertise
optional boolean
Indicates if list item is considered optional.
redistributes EigrpFeatureTemplateAddressFamilyRedistribute[]
Redistribute routes into EIGRP
type string
Set EIGRP address family

  • Choices: ipv4
  • Default value: ipv4
networks Sequence[EigrpFeatureTemplateAddressFamilyNetwork]
Configure the networks for EIGRP to advertise
optional bool
Indicates if list item is considered optional.
redistributes Sequence[EigrpFeatureTemplateAddressFamilyRedistribute]
Redistribute routes into EIGRP
type str
Set EIGRP address family

  • Choices: ipv4
  • Default value: ipv4
networks List<Property Map>
Configure the networks for EIGRP to advertise
optional Boolean
Indicates if list item is considered optional.
redistributes List<Property Map>
Redistribute routes into EIGRP
type String
Set EIGRP address family

  • Choices: ipv4
  • Default value: ipv4

EigrpFeatureTemplateAddressFamilyNetwork
, EigrpFeatureTemplateAddressFamilyNetworkArgs

Optional bool
Indicates if list item is considered optional.
Prefix string
Configure the prefixes for EIGRP to announce
PrefixVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
Prefix string
Configure the prefixes for EIGRP to announce
PrefixVariable string
Variable name
optional Boolean
Indicates if list item is considered optional.
prefix String
Configure the prefixes for EIGRP to announce
prefixVariable String
Variable name
optional boolean
Indicates if list item is considered optional.
prefix string
Configure the prefixes for EIGRP to announce
prefixVariable string
Variable name
optional bool
Indicates if list item is considered optional.
prefix str
Configure the prefixes for EIGRP to announce
prefix_variable str
Variable name
optional Boolean
Indicates if list item is considered optional.
prefix String
Configure the prefixes for EIGRP to announce
prefixVariable String
Variable name

EigrpFeatureTemplateAddressFamilyRedistribute
, EigrpFeatureTemplateAddressFamilyRedistributeArgs

Optional bool
Indicates if list item is considered optional.
Protocol string
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
ProtocolVariable string
Variable name
RoutePolicy string
Configure policy to apply to prefixes received from EIGRP neighbor
RoutePolicyVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
Protocol string
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
ProtocolVariable string
Variable name
RoutePolicy string
Configure policy to apply to prefixes received from EIGRP neighbor
RoutePolicyVariable string
Variable name
optional Boolean
Indicates if list item is considered optional.
protocol String
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
protocolVariable String
Variable name
routePolicy String
Configure policy to apply to prefixes received from EIGRP neighbor
routePolicyVariable String
Variable name
optional boolean
Indicates if list item is considered optional.
protocol string
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
protocolVariable string
Variable name
routePolicy string
Configure policy to apply to prefixes received from EIGRP neighbor
routePolicyVariable string
Variable name
optional bool
Indicates if list item is considered optional.
protocol str
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
protocol_variable str
Variable name
route_policy str
Configure policy to apply to prefixes received from EIGRP neighbor
route_policy_variable str
Variable name
optional Boolean
Indicates if list item is considered optional.
protocol String
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
protocolVariable String
Variable name
routePolicy String
Configure policy to apply to prefixes received from EIGRP neighbor
routePolicyVariable String
Variable name

EigrpFeatureTemplateInterface
, EigrpFeatureTemplateInterfaceArgs

InterfaceName string
Set interface name
InterfaceNameVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
Shutdown bool
Enable/disable EIGRP

  • Default value: false
ShutdownVariable string
Variable name
SummaryAddresses List<EigrpFeatureTemplateInterfaceSummaryAddress>
Set summary addresses
InterfaceName string
Set interface name
InterfaceNameVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
Shutdown bool
Enable/disable EIGRP

  • Default value: false
ShutdownVariable string
Variable name
SummaryAddresses []EigrpFeatureTemplateInterfaceSummaryAddress
Set summary addresses
interfaceName String
Set interface name
interfaceNameVariable String
Variable name
optional Boolean
Indicates if list item is considered optional.
shutdown Boolean
Enable/disable EIGRP

  • Default value: false
shutdownVariable String
Variable name
summaryAddresses List<EigrpFeatureTemplateInterfaceSummaryAddress>
Set summary addresses
interfaceName string
Set interface name
interfaceNameVariable string
Variable name
optional boolean
Indicates if list item is considered optional.
shutdown boolean
Enable/disable EIGRP

  • Default value: false
shutdownVariable string
Variable name
summaryAddresses EigrpFeatureTemplateInterfaceSummaryAddress[]
Set summary addresses
interface_name str
Set interface name
interface_name_variable str
Variable name
optional bool
Indicates if list item is considered optional.
shutdown bool
Enable/disable EIGRP

  • Default value: false
shutdown_variable str
Variable name
summary_addresses Sequence[EigrpFeatureTemplateInterfaceSummaryAddress]
Set summary addresses
interfaceName String
Set interface name
interfaceNameVariable String
Variable name
optional Boolean
Indicates if list item is considered optional.
shutdown Boolean
Enable/disable EIGRP

  • Default value: false
shutdownVariable String
Variable name
summaryAddresses List<Property Map>
Set summary addresses

EigrpFeatureTemplateInterfaceSummaryAddress
, EigrpFeatureTemplateInterfaceSummaryAddressArgs

Optional bool
Indicates if list item is considered optional.
Prefix string
Set summary address prefix
PrefixVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
Prefix string
Set summary address prefix
PrefixVariable string
Variable name
optional Boolean
Indicates if list item is considered optional.
prefix String
Set summary address prefix
prefixVariable String
Variable name
optional boolean
Indicates if list item is considered optional.
prefix string
Set summary address prefix
prefixVariable string
Variable name
optional bool
Indicates if list item is considered optional.
prefix str
Set summary address prefix
prefix_variable str
Variable name
optional Boolean
Indicates if list item is considered optional.
prefix String
Set summary address prefix
prefixVariable String
Variable name

EigrpFeatureTemplateKey
, EigrpFeatureTemplateKeyArgs

Md5AuthenticationKey string
Set MD5 key
Md5AuthenticationKeyVariable string
Variable name
Md5KeyId int
Set MD5 key ID

  • Range: 1-255
Md5KeyIdVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
Md5AuthenticationKey string
Set MD5 key
Md5AuthenticationKeyVariable string
Variable name
Md5KeyId int
Set MD5 key ID

  • Range: 1-255
Md5KeyIdVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
md5AuthenticationKey String
Set MD5 key
md5AuthenticationKeyVariable String
Variable name
md5KeyId Integer
Set MD5 key ID

  • Range: 1-255
md5KeyIdVariable String
Variable name
optional Boolean
Indicates if list item is considered optional.
md5AuthenticationKey string
Set MD5 key
md5AuthenticationKeyVariable string
Variable name
md5KeyId number
Set MD5 key ID

  • Range: 1-255
md5KeyIdVariable string
Variable name
optional boolean
Indicates if list item is considered optional.
md5_authentication_key str
Set MD5 key
md5_authentication_key_variable str
Variable name
md5_key_id int
Set MD5 key ID

  • Range: 1-255
md5_key_id_variable str
Variable name
optional bool
Indicates if list item is considered optional.
md5AuthenticationKey String
Set MD5 key
md5AuthenticationKeyVariable String
Variable name
md5KeyId Number
Set MD5 key ID

  • Range: 1-255
md5KeyIdVariable String
Variable name
optional Boolean
Indicates if list item is considered optional.

Import

$ pulumi import sdwan:index/eigrpFeatureTemplate:EigrpFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd"
Copy

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

Package Details

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