1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. ServiceRoutingEigrpFeature
Cisco Catalyst SD-WAN v0.2.5 published on Saturday, Mar 15, 2025 by Pulumi

sdwan.ServiceRoutingEigrpFeature

Explore with Pulumi AI

This resource can manage a Service Routing EIGRP Feature.

  • Minimum SD-WAN Manager version: 20.12.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.ServiceRoutingEigrpFeature;
import com.pulumi.sdwan.ServiceRoutingEigrpFeatureArgs;
import com.pulumi.sdwan.inputs.ServiceRoutingEigrpFeatureNetworkArgs;
import com.pulumi.sdwan.inputs.ServiceRoutingEigrpFeatureMd5KeyArgs;
import com.pulumi.sdwan.inputs.ServiceRoutingEigrpFeatureInterfaceArgs;
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 ServiceRoutingEigrpFeature("example", ServiceRoutingEigrpFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .autonomousSystemId(111)
            .networks(ServiceRoutingEigrpFeatureNetworkArgs.builder()
                .ip_address("100.2.2.3")
                .mask("255.255.255.0")
                .build())
            .helloInterval(5)
            .holdTime(15)
            .authenticationType("md5")
            .md5Keys(ServiceRoutingEigrpFeatureMd5KeyArgs.builder()
                .key_id(2)
                .key_string("password123")
                .build())
            .interfaces(ServiceRoutingEigrpFeatureInterfaceArgs.builder()
                .name("GigabitEthernet3")
                .shutdown(false)
                .summary_addresses(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .filter(false)
            .build());

    }
}
Copy
resources:
  example:
    type: sdwan:ServiceRoutingEigrpFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      autonomousSystemId: 111
      networks:
        - ip_address: 100.2.2.3
          mask: 255.255.255.0
      helloInterval: 5
      holdTime: 15
      authenticationType: md5
      md5Keys:
        - key_id: 2
          key_string: password123
      interfaces:
        - name: GigabitEthernet3
          shutdown: false
          summary_addresses:
            - address: 10.0.0.1
              mask: 255.255.255.0
      filter: false
Copy

Create ServiceRoutingEigrpFeature Resource

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

Constructor syntax

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

@overload
def ServiceRoutingEigrpFeature(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               feature_profile_id: Optional[str] = None,
                               networks: Optional[Sequence[ServiceRoutingEigrpFeatureNetworkArgs]] = None,
                               hmac_authentication_key: Optional[str] = None,
                               hmac_authentication_key_variable: Optional[str] = None,
                               description: Optional[str] = None,
                               autonomous_system_id: Optional[int] = None,
                               filter: Optional[bool] = None,
                               filter_variable: Optional[str] = None,
                               hello_interval: Optional[int] = None,
                               hello_interval_variable: Optional[str] = None,
                               authentication_type: Optional[str] = None,
                               autonomous_system_id_variable: Optional[str] = None,
                               hold_time: Optional[int] = None,
                               hold_time_variable: Optional[str] = None,
                               interfaces: Optional[Sequence[ServiceRoutingEigrpFeatureInterfaceArgs]] = None,
                               md5_keys: Optional[Sequence[ServiceRoutingEigrpFeatureMd5KeyArgs]] = None,
                               name: Optional[str] = None,
                               authentication_type_variable: Optional[str] = None,
                               redistributes: Optional[Sequence[ServiceRoutingEigrpFeatureRedistributeArgs]] = None,
                               route_policy_id: Optional[str] = None)
func NewServiceRoutingEigrpFeature(ctx *Context, name string, args ServiceRoutingEigrpFeatureArgs, opts ...ResourceOption) (*ServiceRoutingEigrpFeature, error)
public ServiceRoutingEigrpFeature(string name, ServiceRoutingEigrpFeatureArgs args, CustomResourceOptions? opts = null)
public ServiceRoutingEigrpFeature(String name, ServiceRoutingEigrpFeatureArgs args)
public ServiceRoutingEigrpFeature(String name, ServiceRoutingEigrpFeatureArgs args, CustomResourceOptions options)
type: sdwan:ServiceRoutingEigrpFeature
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. ServiceRoutingEigrpFeatureArgs
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. ServiceRoutingEigrpFeatureArgs
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. ServiceRoutingEigrpFeatureArgs
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. ServiceRoutingEigrpFeatureArgs
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. ServiceRoutingEigrpFeatureArgs
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 serviceRoutingEigrpFeatureResource = new Sdwan.ServiceRoutingEigrpFeature("serviceRoutingEigrpFeatureResource", new()
{
    FeatureProfileId = "string",
    Networks = new[]
    {
        new Sdwan.Inputs.ServiceRoutingEigrpFeatureNetworkArgs
        {
            IpAddress = "string",
            IpAddressVariable = "string",
            Mask = "string",
            MaskVariable = "string",
        },
    },
    HmacAuthenticationKey = "string",
    HmacAuthenticationKeyVariable = "string",
    Description = "string",
    AutonomousSystemId = 0,
    Filter = false,
    FilterVariable = "string",
    HelloInterval = 0,
    HelloIntervalVariable = "string",
    AuthenticationType = "string",
    AutonomousSystemIdVariable = "string",
    HoldTime = 0,
    HoldTimeVariable = "string",
    Interfaces = new[]
    {
        new Sdwan.Inputs.ServiceRoutingEigrpFeatureInterfaceArgs
        {
            Name = "string",
            NameVariable = "string",
            Shutdown = false,
            ShutdownVariable = "string",
            SummaryAddresses = new[]
            {
                new Sdwan.Inputs.ServiceRoutingEigrpFeatureInterfaceSummaryAddressArgs
                {
                    Address = "string",
                    AddressVariable = "string",
                    Mask = "string",
                    MaskVariable = "string",
                },
            },
        },
    },
    Md5Keys = new[]
    {
        new Sdwan.Inputs.ServiceRoutingEigrpFeatureMd5KeyArgs
        {
            KeyId = 0,
            KeyIdVariable = "string",
            KeyString = "string",
            KeyStringVariable = "string",
        },
    },
    Name = "string",
    AuthenticationTypeVariable = "string",
    Redistributes = new[]
    {
        new Sdwan.Inputs.ServiceRoutingEigrpFeatureRedistributeArgs
        {
            Protocol = "string",
            ProtocolVariable = "string",
            RoutePolicyId = "string",
        },
    },
    RoutePolicyId = "string",
});
Copy
example, err := sdwan.NewServiceRoutingEigrpFeature(ctx, "serviceRoutingEigrpFeatureResource", &sdwan.ServiceRoutingEigrpFeatureArgs{
	FeatureProfileId: pulumi.String("string"),
	Networks: sdwan.ServiceRoutingEigrpFeatureNetworkArray{
		&sdwan.ServiceRoutingEigrpFeatureNetworkArgs{
			IpAddress:         pulumi.String("string"),
			IpAddressVariable: pulumi.String("string"),
			Mask:              pulumi.String("string"),
			MaskVariable:      pulumi.String("string"),
		},
	},
	HmacAuthenticationKey:         pulumi.String("string"),
	HmacAuthenticationKeyVariable: pulumi.String("string"),
	Description:                   pulumi.String("string"),
	AutonomousSystemId:            pulumi.Int(0),
	Filter:                        pulumi.Bool(false),
	FilterVariable:                pulumi.String("string"),
	HelloInterval:                 pulumi.Int(0),
	HelloIntervalVariable:         pulumi.String("string"),
	AuthenticationType:            pulumi.String("string"),
	AutonomousSystemIdVariable:    pulumi.String("string"),
	HoldTime:                      pulumi.Int(0),
	HoldTimeVariable:              pulumi.String("string"),
	Interfaces: sdwan.ServiceRoutingEigrpFeatureInterfaceArray{
		&sdwan.ServiceRoutingEigrpFeatureInterfaceArgs{
			Name:             pulumi.String("string"),
			NameVariable:     pulumi.String("string"),
			Shutdown:         pulumi.Bool(false),
			ShutdownVariable: pulumi.String("string"),
			SummaryAddresses: sdwan.ServiceRoutingEigrpFeatureInterfaceSummaryAddressArray{
				&sdwan.ServiceRoutingEigrpFeatureInterfaceSummaryAddressArgs{
					Address:         pulumi.String("string"),
					AddressVariable: pulumi.String("string"),
					Mask:            pulumi.String("string"),
					MaskVariable:    pulumi.String("string"),
				},
			},
		},
	},
	Md5Keys: sdwan.ServiceRoutingEigrpFeatureMd5KeyArray{
		&sdwan.ServiceRoutingEigrpFeatureMd5KeyArgs{
			KeyId:             pulumi.Int(0),
			KeyIdVariable:     pulumi.String("string"),
			KeyString:         pulumi.String("string"),
			KeyStringVariable: pulumi.String("string"),
		},
	},
	Name:                       pulumi.String("string"),
	AuthenticationTypeVariable: pulumi.String("string"),
	Redistributes: sdwan.ServiceRoutingEigrpFeatureRedistributeArray{
		&sdwan.ServiceRoutingEigrpFeatureRedistributeArgs{
			Protocol:         pulumi.String("string"),
			ProtocolVariable: pulumi.String("string"),
			RoutePolicyId:    pulumi.String("string"),
		},
	},
	RoutePolicyId: pulumi.String("string"),
})
Copy
var serviceRoutingEigrpFeatureResource = new ServiceRoutingEigrpFeature("serviceRoutingEigrpFeatureResource", ServiceRoutingEigrpFeatureArgs.builder()
    .featureProfileId("string")
    .networks(ServiceRoutingEigrpFeatureNetworkArgs.builder()
        .ipAddress("string")
        .ipAddressVariable("string")
        .mask("string")
        .maskVariable("string")
        .build())
    .hmacAuthenticationKey("string")
    .hmacAuthenticationKeyVariable("string")
    .description("string")
    .autonomousSystemId(0)
    .filter(false)
    .filterVariable("string")
    .helloInterval(0)
    .helloIntervalVariable("string")
    .authenticationType("string")
    .autonomousSystemIdVariable("string")
    .holdTime(0)
    .holdTimeVariable("string")
    .interfaces(ServiceRoutingEigrpFeatureInterfaceArgs.builder()
        .name("string")
        .nameVariable("string")
        .shutdown(false)
        .shutdownVariable("string")
        .summaryAddresses(ServiceRoutingEigrpFeatureInterfaceSummaryAddressArgs.builder()
            .address("string")
            .addressVariable("string")
            .mask("string")
            .maskVariable("string")
            .build())
        .build())
    .md5Keys(ServiceRoutingEigrpFeatureMd5KeyArgs.builder()
        .keyId(0)
        .keyIdVariable("string")
        .keyString("string")
        .keyStringVariable("string")
        .build())
    .name("string")
    .authenticationTypeVariable("string")
    .redistributes(ServiceRoutingEigrpFeatureRedistributeArgs.builder()
        .protocol("string")
        .protocolVariable("string")
        .routePolicyId("string")
        .build())
    .routePolicyId("string")
    .build());
Copy
service_routing_eigrp_feature_resource = sdwan.ServiceRoutingEigrpFeature("serviceRoutingEigrpFeatureResource",
    feature_profile_id="string",
    networks=[{
        "ip_address": "string",
        "ip_address_variable": "string",
        "mask": "string",
        "mask_variable": "string",
    }],
    hmac_authentication_key="string",
    hmac_authentication_key_variable="string",
    description="string",
    autonomous_system_id=0,
    filter=False,
    filter_variable="string",
    hello_interval=0,
    hello_interval_variable="string",
    authentication_type="string",
    autonomous_system_id_variable="string",
    hold_time=0,
    hold_time_variable="string",
    interfaces=[{
        "name": "string",
        "name_variable": "string",
        "shutdown": False,
        "shutdown_variable": "string",
        "summary_addresses": [{
            "address": "string",
            "address_variable": "string",
            "mask": "string",
            "mask_variable": "string",
        }],
    }],
    md5_keys=[{
        "key_id": 0,
        "key_id_variable": "string",
        "key_string": "string",
        "key_string_variable": "string",
    }],
    name="string",
    authentication_type_variable="string",
    redistributes=[{
        "protocol": "string",
        "protocol_variable": "string",
        "route_policy_id": "string",
    }],
    route_policy_id="string")
Copy
const serviceRoutingEigrpFeatureResource = new sdwan.ServiceRoutingEigrpFeature("serviceRoutingEigrpFeatureResource", {
    featureProfileId: "string",
    networks: [{
        ipAddress: "string",
        ipAddressVariable: "string",
        mask: "string",
        maskVariable: "string",
    }],
    hmacAuthenticationKey: "string",
    hmacAuthenticationKeyVariable: "string",
    description: "string",
    autonomousSystemId: 0,
    filter: false,
    filterVariable: "string",
    helloInterval: 0,
    helloIntervalVariable: "string",
    authenticationType: "string",
    autonomousSystemIdVariable: "string",
    holdTime: 0,
    holdTimeVariable: "string",
    interfaces: [{
        name: "string",
        nameVariable: "string",
        shutdown: false,
        shutdownVariable: "string",
        summaryAddresses: [{
            address: "string",
            addressVariable: "string",
            mask: "string",
            maskVariable: "string",
        }],
    }],
    md5Keys: [{
        keyId: 0,
        keyIdVariable: "string",
        keyString: "string",
        keyStringVariable: "string",
    }],
    name: "string",
    authenticationTypeVariable: "string",
    redistributes: [{
        protocol: "string",
        protocolVariable: "string",
        routePolicyId: "string",
    }],
    routePolicyId: "string",
});
Copy
type: sdwan:ServiceRoutingEigrpFeature
properties:
    authenticationType: string
    authenticationTypeVariable: string
    autonomousSystemId: 0
    autonomousSystemIdVariable: string
    description: string
    featureProfileId: string
    filter: false
    filterVariable: string
    helloInterval: 0
    helloIntervalVariable: string
    hmacAuthenticationKey: string
    hmacAuthenticationKeyVariable: string
    holdTime: 0
    holdTimeVariable: string
    interfaces:
        - name: string
          nameVariable: string
          shutdown: false
          shutdownVariable: string
          summaryAddresses:
            - address: string
              addressVariable: string
              mask: string
              maskVariable: string
    md5Keys:
        - keyId: 0
          keyIdVariable: string
          keyString: string
          keyStringVariable: string
    name: string
    networks:
        - ipAddress: string
          ipAddressVariable: string
          mask: string
          maskVariable: string
    redistributes:
        - protocol: string
          protocolVariable: string
          routePolicyId: string
    routePolicyId: string
Copy

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

FeatureProfileId This property is required. string
Feature Profile ID
Networks This property is required. List<ServiceRoutingEigrpFeatureNetwork>
Configure the networks for EIGRP to advertise
AuthenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
AuthenticationTypeVariable string
Variable name
AutonomousSystemId int
Set autonomous system ID <1..65535> - Range: 1-65535
AutonomousSystemIdVariable string
Variable name
Description string
The description of the Feature
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, Attribute conditional on authentication_type being equal to hmac-sha-256
HmacAuthenticationKeyVariable string
Variable name
HoldTime int
Set EIGRP hold time - Range: 0-65535 - Default value: 15
HoldTimeVariable string
Variable name
Interfaces List<ServiceRoutingEigrpFeatureInterface>
Configure IPv4 Static Routes
Md5Keys List<ServiceRoutingEigrpFeatureMd5Key>
Set keychain details, Attribute conditional on authentication_type being equal to md5
Name string
The name of the Feature
Redistributes List<ServiceRoutingEigrpFeatureRedistribute>
Redistribute routes into EIGRP
RoutePolicyId string
FeatureProfileId This property is required. string
Feature Profile ID
Networks This property is required. []ServiceRoutingEigrpFeatureNetworkArgs
Configure the networks for EIGRP to advertise
AuthenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
AuthenticationTypeVariable string
Variable name
AutonomousSystemId int
Set autonomous system ID <1..65535> - Range: 1-65535
AutonomousSystemIdVariable string
Variable name
Description string
The description of the Feature
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, Attribute conditional on authentication_type being equal to hmac-sha-256
HmacAuthenticationKeyVariable string
Variable name
HoldTime int
Set EIGRP hold time - Range: 0-65535 - Default value: 15
HoldTimeVariable string
Variable name
Interfaces []ServiceRoutingEigrpFeatureInterfaceArgs
Configure IPv4 Static Routes
Md5Keys []ServiceRoutingEigrpFeatureMd5KeyArgs
Set keychain details, Attribute conditional on authentication_type being equal to md5
Name string
The name of the Feature
Redistributes []ServiceRoutingEigrpFeatureRedistributeArgs
Redistribute routes into EIGRP
RoutePolicyId string
featureProfileId This property is required. String
Feature Profile ID
networks This property is required. List<ServiceRoutingEigrpFeatureNetwork>
Configure the networks for EIGRP to advertise
authenticationType String
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable String
Variable name
autonomousSystemId Integer
Set autonomous system ID <1..65535> - Range: 1-65535
autonomousSystemIdVariable String
Variable name
description String
The description of the Feature
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, Attribute conditional on authentication_type being equal to hmac-sha-256
hmacAuthenticationKeyVariable String
Variable name
holdTime Integer
Set EIGRP hold time - Range: 0-65535 - Default value: 15
holdTimeVariable String
Variable name
interfaces List<ServiceRoutingEigrpFeatureInterface>
Configure IPv4 Static Routes
md5Keys List<ServiceRoutingEigrpFeatureMd5Key>
Set keychain details, Attribute conditional on authentication_type being equal to md5
name String
The name of the Feature
redistributes List<ServiceRoutingEigrpFeatureRedistribute>
Redistribute routes into EIGRP
routePolicyId String
featureProfileId This property is required. string
Feature Profile ID
networks This property is required. ServiceRoutingEigrpFeatureNetwork[]
Configure the networks for EIGRP to advertise
authenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable string
Variable name
autonomousSystemId number
Set autonomous system ID <1..65535> - Range: 1-65535
autonomousSystemIdVariable string
Variable name
description string
The description of the Feature
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, Attribute conditional on authentication_type being equal to hmac-sha-256
hmacAuthenticationKeyVariable string
Variable name
holdTime number
Set EIGRP hold time - Range: 0-65535 - Default value: 15
holdTimeVariable string
Variable name
interfaces ServiceRoutingEigrpFeatureInterface[]
Configure IPv4 Static Routes
md5Keys ServiceRoutingEigrpFeatureMd5Key[]
Set keychain details, Attribute conditional on authentication_type being equal to md5
name string
The name of the Feature
redistributes ServiceRoutingEigrpFeatureRedistribute[]
Redistribute routes into EIGRP
routePolicyId string
feature_profile_id This property is required. str
Feature Profile ID
networks This property is required. Sequence[ServiceRoutingEigrpFeatureNetworkArgs]
Configure the networks for EIGRP to advertise
authentication_type str
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authentication_type_variable str
Variable name
autonomous_system_id int
Set autonomous system ID <1..65535> - Range: 1-65535
autonomous_system_id_variable str
Variable name
description str
The description of the Feature
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, Attribute conditional on authentication_type being equal to hmac-sha-256
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[ServiceRoutingEigrpFeatureInterfaceArgs]
Configure IPv4 Static Routes
md5_keys Sequence[ServiceRoutingEigrpFeatureMd5KeyArgs]
Set keychain details, Attribute conditional on authentication_type being equal to md5
name str
The name of the Feature
redistributes Sequence[ServiceRoutingEigrpFeatureRedistributeArgs]
Redistribute routes into EIGRP
route_policy_id str
featureProfileId This property is required. String
Feature Profile ID
networks This property is required. List<Property Map>
Configure the networks for EIGRP to advertise
authenticationType String
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable String
Variable name
autonomousSystemId Number
Set autonomous system ID <1..65535> - Range: 1-65535
autonomousSystemIdVariable String
Variable name
description String
The description of the Feature
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, Attribute conditional on authentication_type being equal to hmac-sha-256
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
md5Keys List<Property Map>
Set keychain details, Attribute conditional on authentication_type being equal to md5
name String
The name of the Feature
redistributes List<Property Map>
Redistribute routes into EIGRP
routePolicyId String

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Version int
The version of the Feature
Id string
The provider-assigned unique ID for this managed resource.
Version int
The version of the Feature
id String
The provider-assigned unique ID for this managed resource.
version Integer
The version of the Feature
id string
The provider-assigned unique ID for this managed resource.
version number
The version of the Feature
id str
The provider-assigned unique ID for this managed resource.
version int
The version of the Feature
id String
The provider-assigned unique ID for this managed resource.
version Number
The version of the Feature

Look up Existing ServiceRoutingEigrpFeature Resource

Get an existing ServiceRoutingEigrpFeature 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?: ServiceRoutingEigrpFeatureState, opts?: CustomResourceOptions): ServiceRoutingEigrpFeature
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authentication_type: Optional[str] = None,
        authentication_type_variable: Optional[str] = None,
        autonomous_system_id: Optional[int] = None,
        autonomous_system_id_variable: Optional[str] = None,
        description: Optional[str] = None,
        feature_profile_id: Optional[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[ServiceRoutingEigrpFeatureInterfaceArgs]] = None,
        md5_keys: Optional[Sequence[ServiceRoutingEigrpFeatureMd5KeyArgs]] = None,
        name: Optional[str] = None,
        networks: Optional[Sequence[ServiceRoutingEigrpFeatureNetworkArgs]] = None,
        redistributes: Optional[Sequence[ServiceRoutingEigrpFeatureRedistributeArgs]] = None,
        route_policy_id: Optional[str] = None,
        version: Optional[int] = None) -> ServiceRoutingEigrpFeature
func GetServiceRoutingEigrpFeature(ctx *Context, name string, id IDInput, state *ServiceRoutingEigrpFeatureState, opts ...ResourceOption) (*ServiceRoutingEigrpFeature, error)
public static ServiceRoutingEigrpFeature Get(string name, Input<string> id, ServiceRoutingEigrpFeatureState? state, CustomResourceOptions? opts = null)
public static ServiceRoutingEigrpFeature get(String name, Output<String> id, ServiceRoutingEigrpFeatureState state, CustomResourceOptions options)
resources:  _:    type: sdwan:ServiceRoutingEigrpFeature    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:
AuthenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
AuthenticationTypeVariable string
Variable name
AutonomousSystemId int
Set autonomous system ID <1..65535> - Range: 1-65535
AutonomousSystemIdVariable string
Variable name
Description string
The description of the Feature
FeatureProfileId string
Feature Profile ID
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, Attribute conditional on authentication_type being equal to hmac-sha-256
HmacAuthenticationKeyVariable string
Variable name
HoldTime int
Set EIGRP hold time - Range: 0-65535 - Default value: 15
HoldTimeVariable string
Variable name
Interfaces List<ServiceRoutingEigrpFeatureInterface>
Configure IPv4 Static Routes
Md5Keys List<ServiceRoutingEigrpFeatureMd5Key>
Set keychain details, Attribute conditional on authentication_type being equal to md5
Name string
The name of the Feature
Networks List<ServiceRoutingEigrpFeatureNetwork>
Configure the networks for EIGRP to advertise
Redistributes List<ServiceRoutingEigrpFeatureRedistribute>
Redistribute routes into EIGRP
RoutePolicyId string
Version int
The version of the Feature
AuthenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
AuthenticationTypeVariable string
Variable name
AutonomousSystemId int
Set autonomous system ID <1..65535> - Range: 1-65535
AutonomousSystemIdVariable string
Variable name
Description string
The description of the Feature
FeatureProfileId string
Feature Profile ID
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, Attribute conditional on authentication_type being equal to hmac-sha-256
HmacAuthenticationKeyVariable string
Variable name
HoldTime int
Set EIGRP hold time - Range: 0-65535 - Default value: 15
HoldTimeVariable string
Variable name
Interfaces []ServiceRoutingEigrpFeatureInterfaceArgs
Configure IPv4 Static Routes
Md5Keys []ServiceRoutingEigrpFeatureMd5KeyArgs
Set keychain details, Attribute conditional on authentication_type being equal to md5
Name string
The name of the Feature
Networks []ServiceRoutingEigrpFeatureNetworkArgs
Configure the networks for EIGRP to advertise
Redistributes []ServiceRoutingEigrpFeatureRedistributeArgs
Redistribute routes into EIGRP
RoutePolicyId string
Version int
The version of the Feature
authenticationType String
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable String
Variable name
autonomousSystemId Integer
Set autonomous system ID <1..65535> - Range: 1-65535
autonomousSystemIdVariable String
Variable name
description String
The description of the Feature
featureProfileId String
Feature Profile ID
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, Attribute conditional on authentication_type being equal to hmac-sha-256
hmacAuthenticationKeyVariable String
Variable name
holdTime Integer
Set EIGRP hold time - Range: 0-65535 - Default value: 15
holdTimeVariable String
Variable name
interfaces List<ServiceRoutingEigrpFeatureInterface>
Configure IPv4 Static Routes
md5Keys List<ServiceRoutingEigrpFeatureMd5Key>
Set keychain details, Attribute conditional on authentication_type being equal to md5
name String
The name of the Feature
networks List<ServiceRoutingEigrpFeatureNetwork>
Configure the networks for EIGRP to advertise
redistributes List<ServiceRoutingEigrpFeatureRedistribute>
Redistribute routes into EIGRP
routePolicyId String
version Integer
The version of the Feature
authenticationType string
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable string
Variable name
autonomousSystemId number
Set autonomous system ID <1..65535> - Range: 1-65535
autonomousSystemIdVariable string
Variable name
description string
The description of the Feature
featureProfileId string
Feature Profile ID
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, Attribute conditional on authentication_type being equal to hmac-sha-256
hmacAuthenticationKeyVariable string
Variable name
holdTime number
Set EIGRP hold time - Range: 0-65535 - Default value: 15
holdTimeVariable string
Variable name
interfaces ServiceRoutingEigrpFeatureInterface[]
Configure IPv4 Static Routes
md5Keys ServiceRoutingEigrpFeatureMd5Key[]
Set keychain details, Attribute conditional on authentication_type being equal to md5
name string
The name of the Feature
networks ServiceRoutingEigrpFeatureNetwork[]
Configure the networks for EIGRP to advertise
redistributes ServiceRoutingEigrpFeatureRedistribute[]
Redistribute routes into EIGRP
routePolicyId string
version number
The version of the Feature
authentication_type str
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authentication_type_variable str
Variable name
autonomous_system_id int
Set autonomous system ID <1..65535> - Range: 1-65535
autonomous_system_id_variable str
Variable name
description str
The description of the Feature
feature_profile_id str
Feature Profile ID
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, Attribute conditional on authentication_type being equal to hmac-sha-256
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[ServiceRoutingEigrpFeatureInterfaceArgs]
Configure IPv4 Static Routes
md5_keys Sequence[ServiceRoutingEigrpFeatureMd5KeyArgs]
Set keychain details, Attribute conditional on authentication_type being equal to md5
name str
The name of the Feature
networks Sequence[ServiceRoutingEigrpFeatureNetworkArgs]
Configure the networks for EIGRP to advertise
redistributes Sequence[ServiceRoutingEigrpFeatureRedistributeArgs]
Redistribute routes into EIGRP
route_policy_id str
version int
The version of the Feature
authenticationType String
Set EIGRP router authentication type - Choices: md5, hmac-sha-256
authenticationTypeVariable String
Variable name
autonomousSystemId Number
Set autonomous system ID <1..65535> - Range: 1-65535
autonomousSystemIdVariable String
Variable name
description String
The description of the Feature
featureProfileId String
Feature Profile ID
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, Attribute conditional on authentication_type being equal to hmac-sha-256
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
md5Keys List<Property Map>
Set keychain details, Attribute conditional on authentication_type being equal to md5
name String
The name of the Feature
networks List<Property Map>
Configure the networks for EIGRP to advertise
redistributes List<Property Map>
Redistribute routes into EIGRP
routePolicyId String
version Number
The version of the Feature

Supporting Types

ServiceRoutingEigrpFeatureInterface
, ServiceRoutingEigrpFeatureInterfaceArgs

Name string
Set interface name
NameVariable string
Variable name
Shutdown bool
Enable/disable EIGRP

  • Default value: false
ShutdownVariable string
Variable name
SummaryAddresses List<ServiceRoutingEigrpFeatureInterfaceSummaryAddress>
Set summary addresses
Name string
Set interface name
NameVariable string
Variable name
Shutdown bool
Enable/disable EIGRP

  • Default value: false
ShutdownVariable string
Variable name
SummaryAddresses []ServiceRoutingEigrpFeatureInterfaceSummaryAddress
Set summary addresses
name String
Set interface name
nameVariable String
Variable name
shutdown Boolean
Enable/disable EIGRP

  • Default value: false
shutdownVariable String
Variable name
summaryAddresses List<ServiceRoutingEigrpFeatureInterfaceSummaryAddress>
Set summary addresses
name string
Set interface name
nameVariable string
Variable name
shutdown boolean
Enable/disable EIGRP

  • Default value: false
shutdownVariable string
Variable name
summaryAddresses ServiceRoutingEigrpFeatureInterfaceSummaryAddress[]
Set summary addresses
name str
Set interface name
name_variable str
Variable name
shutdown bool
Enable/disable EIGRP

  • Default value: false
shutdown_variable str
Variable name
summary_addresses Sequence[ServiceRoutingEigrpFeatureInterfaceSummaryAddress]
Set summary addresses
name String
Set interface name
nameVariable String
Variable name
shutdown Boolean
Enable/disable EIGRP

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

ServiceRoutingEigrpFeatureInterfaceSummaryAddress
, ServiceRoutingEigrpFeatureInterfaceSummaryAddressArgs

Address string
AddressVariable string
Variable name
Mask string
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
MaskVariable string
Variable name
Address string
AddressVariable string
Variable name
Mask string
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
MaskVariable string
Variable name
address String
addressVariable String
Variable name
mask String
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
maskVariable String
Variable name
address string
addressVariable string
Variable name
mask string
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
maskVariable string
Variable name
address str
address_variable str
Variable name
mask str
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
mask_variable str
Variable name
address String
addressVariable String
Variable name
mask String
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
maskVariable String
Variable name

ServiceRoutingEigrpFeatureMd5Key
, ServiceRoutingEigrpFeatureMd5KeyArgs

KeyId int
Set MD5 key ID

  • Range: 1-255
KeyIdVariable string
Variable name
KeyString string
Set MD5 key
KeyStringVariable string
Variable name
KeyId int
Set MD5 key ID

  • Range: 1-255
KeyIdVariable string
Variable name
KeyString string
Set MD5 key
KeyStringVariable string
Variable name
keyId Integer
Set MD5 key ID

  • Range: 1-255
keyIdVariable String
Variable name
keyString String
Set MD5 key
keyStringVariable String
Variable name
keyId number
Set MD5 key ID

  • Range: 1-255
keyIdVariable string
Variable name
keyString string
Set MD5 key
keyStringVariable string
Variable name
key_id int
Set MD5 key ID

  • Range: 1-255
key_id_variable str
Variable name
key_string str
Set MD5 key
key_string_variable str
Variable name
keyId Number
Set MD5 key ID

  • Range: 1-255
keyIdVariable String
Variable name
keyString String
Set MD5 key
keyStringVariable String
Variable name

ServiceRoutingEigrpFeatureNetwork
, ServiceRoutingEigrpFeatureNetworkArgs

IpAddress string
IpAddressVariable string
Variable name
Mask string
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
MaskVariable string
Variable name
IpAddress string
IpAddressVariable string
Variable name
Mask string
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
MaskVariable string
Variable name
ipAddress String
ipAddressVariable String
Variable name
mask String
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
maskVariable String
Variable name
ipAddress string
ipAddressVariable string
Variable name
mask string
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
maskVariable string
Variable name
ip_address str
ip_address_variable str
Variable name
mask str
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
mask_variable str
Variable name
ipAddress String
ipAddressVariable String
Variable name
mask String
  • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
maskVariable String
Variable name

ServiceRoutingEigrpFeatureRedistribute
, ServiceRoutingEigrpFeatureRedistributeArgs

Protocol string
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
ProtocolVariable string
Variable name
RoutePolicyId string
Protocol string
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
ProtocolVariable string
Variable name
RoutePolicyId string
protocol String
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
protocolVariable String
Variable name
routePolicyId String
protocol string
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
protocolVariable string
Variable name
routePolicyId string
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_id str
protocol String
Set the protocol to redistribute routes from

  • Choices: bgp, connected, nat-route, omp, ospf, ospfv3, static
protocolVariable String
Variable name
routePolicyId String

Import

Expected import identifier with the format: “service_routing_eigrp_feature_id,feature_profile_id”

$ pulumi import sdwan:index/serviceRoutingEigrpFeature:ServiceRoutingEigrpFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
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.