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());
    }
}
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
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 string
- The unique name of the resource.
- args ServiceRoutingEigrpFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args ServiceRoutingEigrpFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceRoutingEigrpFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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:
- FeatureProfile stringId 
- Feature Profile ID
- Networks
List<ServiceRouting Eigrp Feature Network> 
- Configure the networks for EIGRP to advertise
- AuthenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- AuthenticationType stringVariable 
- Variable name
- AutonomousSystem intId 
- Set autonomous system ID <1..65535> - Range: 1-65535
- AutonomousSystem stringId Variable 
- 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
- HelloInterval stringVariable 
- Variable name
- HmacAuthentication stringKey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- HmacAuthentication stringKey Variable 
- Variable name
- HoldTime int
- Set EIGRP hold time - Range: 0-65535- Default value:15
- HoldTime stringVariable 
- Variable name
- Interfaces
List<ServiceRouting Eigrp Feature Interface> 
- Configure IPv4 Static Routes
- Md5Keys
List<ServiceRouting Eigrp Feature Md5Key> 
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- Name string
- The name of the Feature
- Redistributes
List<ServiceRouting Eigrp Feature Redistribute> 
- Redistribute routes into EIGRP
- RoutePolicy stringId 
- FeatureProfile stringId 
- Feature Profile ID
- Networks
[]ServiceRouting Eigrp Feature Network Args 
- Configure the networks for EIGRP to advertise
- AuthenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- AuthenticationType stringVariable 
- Variable name
- AutonomousSystem intId 
- Set autonomous system ID <1..65535> - Range: 1-65535
- AutonomousSystem stringId Variable 
- 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
- HelloInterval stringVariable 
- Variable name
- HmacAuthentication stringKey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- HmacAuthentication stringKey Variable 
- Variable name
- HoldTime int
- Set EIGRP hold time - Range: 0-65535- Default value:15
- HoldTime stringVariable 
- Variable name
- Interfaces
[]ServiceRouting Eigrp Feature Interface Args 
- Configure IPv4 Static Routes
- Md5Keys
[]ServiceRouting Eigrp Feature Md5Key Args 
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- Name string
- The name of the Feature
- Redistributes
[]ServiceRouting Eigrp Feature Redistribute Args 
- Redistribute routes into EIGRP
- RoutePolicy stringId 
- featureProfile StringId 
- Feature Profile ID
- networks
List<ServiceRouting Eigrp Feature Network> 
- Configure the networks for EIGRP to advertise
- authenticationType String
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType StringVariable 
- Variable name
- autonomousSystem IntegerId 
- Set autonomous system ID <1..65535> - Range: 1-65535
- autonomousSystem StringId Variable 
- 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
- helloInterval StringVariable 
- Variable name
- hmacAuthentication StringKey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- hmacAuthentication StringKey Variable 
- Variable name
- holdTime Integer
- Set EIGRP hold time - Range: 0-65535- Default value:15
- holdTime StringVariable 
- Variable name
- interfaces
List<ServiceRouting Eigrp Feature Interface> 
- Configure IPv4 Static Routes
- md5Keys
List<ServiceRouting Eigrp Feature Md5Key> 
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- name String
- The name of the Feature
- redistributes
List<ServiceRouting Eigrp Feature Redistribute> 
- Redistribute routes into EIGRP
- routePolicy StringId 
- featureProfile stringId 
- Feature Profile ID
- networks
ServiceRouting Eigrp Feature Network[] 
- Configure the networks for EIGRP to advertise
- authenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType stringVariable 
- Variable name
- autonomousSystem numberId 
- Set autonomous system ID <1..65535> - Range: 1-65535
- autonomousSystem stringId Variable 
- 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
- helloInterval stringVariable 
- Variable name
- hmacAuthentication stringKey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- hmacAuthentication stringKey Variable 
- Variable name
- holdTime number
- Set EIGRP hold time - Range: 0-65535- Default value:15
- holdTime stringVariable 
- Variable name
- interfaces
ServiceRouting Eigrp Feature Interface[] 
- Configure IPv4 Static Routes
- md5Keys
ServiceRouting Eigrp Feature Md5Key[] 
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- name string
- The name of the Feature
- redistributes
ServiceRouting Eigrp Feature Redistribute[] 
- Redistribute routes into EIGRP
- routePolicy stringId 
- feature_profile_ strid 
- Feature Profile ID
- networks
Sequence[ServiceRouting Eigrp Feature Network Args] 
- Configure the networks for EIGRP to advertise
- authentication_type str
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authentication_type_ strvariable 
- Variable name
- autonomous_system_ intid 
- Set autonomous system ID <1..65535> - Range: 1-65535
- autonomous_system_ strid_ variable 
- 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_ strvariable 
- Variable name
- hmac_authentication_ strkey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- hmac_authentication_ strkey_ variable 
- Variable name
- hold_time int
- Set EIGRP hold time - Range: 0-65535- Default value:15
- hold_time_ strvariable 
- Variable name
- interfaces
Sequence[ServiceRouting Eigrp Feature Interface Args] 
- Configure IPv4 Static Routes
- md5_keys Sequence[ServiceRouting Eigrp Feature Md5Key Args] 
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- name str
- The name of the Feature
- redistributes
Sequence[ServiceRouting Eigrp Feature Redistribute Args] 
- Redistribute routes into EIGRP
- route_policy_ strid 
- featureProfile StringId 
- Feature Profile ID
- networks List<Property Map>
- Configure the networks for EIGRP to advertise
- authenticationType String
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType StringVariable 
- Variable name
- autonomousSystem NumberId 
- Set autonomous system ID <1..65535> - Range: 1-65535
- autonomousSystem StringId Variable 
- 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
- helloInterval StringVariable 
- Variable name
- hmacAuthentication StringKey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- hmacAuthentication StringKey Variable 
- Variable name
- holdTime Number
- Set EIGRP hold time - Range: 0-65535- Default value:15
- holdTime StringVariable 
- Variable name
- interfaces List<Property Map>
- Configure IPv4 Static Routes
- md5Keys List<Property Map>
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- name String
- The name of the Feature
- redistributes List<Property Map>
- Redistribute routes into EIGRP
- routePolicy StringId 
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceRoutingEigrpFeature resource produces the following output properties:
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) -> ServiceRoutingEigrpFeaturefunc 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AuthenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- AuthenticationType stringVariable 
- Variable name
- AutonomousSystem intId 
- Set autonomous system ID <1..65535> - Range: 1-65535
- AutonomousSystem stringId Variable 
- Variable name
- Description string
- The description of the Feature
- FeatureProfile stringId 
- 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
- HelloInterval stringVariable 
- Variable name
- HmacAuthentication stringKey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- HmacAuthentication stringKey Variable 
- Variable name
- HoldTime int
- Set EIGRP hold time - Range: 0-65535- Default value:15
- HoldTime stringVariable 
- Variable name
- Interfaces
List<ServiceRouting Eigrp Feature Interface> 
- Configure IPv4 Static Routes
- Md5Keys
List<ServiceRouting Eigrp Feature Md5Key> 
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- Name string
- The name of the Feature
- Networks
List<ServiceRouting Eigrp Feature Network> 
- Configure the networks for EIGRP to advertise
- Redistributes
List<ServiceRouting Eigrp Feature Redistribute> 
- Redistribute routes into EIGRP
- RoutePolicy stringId 
- Version int
- The version of the Feature
- AuthenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- AuthenticationType stringVariable 
- Variable name
- AutonomousSystem intId 
- Set autonomous system ID <1..65535> - Range: 1-65535
- AutonomousSystem stringId Variable 
- Variable name
- Description string
- The description of the Feature
- FeatureProfile stringId 
- 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
- HelloInterval stringVariable 
- Variable name
- HmacAuthentication stringKey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- HmacAuthentication stringKey Variable 
- Variable name
- HoldTime int
- Set EIGRP hold time - Range: 0-65535- Default value:15
- HoldTime stringVariable 
- Variable name
- Interfaces
[]ServiceRouting Eigrp Feature Interface Args 
- Configure IPv4 Static Routes
- Md5Keys
[]ServiceRouting Eigrp Feature Md5Key Args 
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- Name string
- The name of the Feature
- Networks
[]ServiceRouting Eigrp Feature Network Args 
- Configure the networks for EIGRP to advertise
- Redistributes
[]ServiceRouting Eigrp Feature Redistribute Args 
- Redistribute routes into EIGRP
- RoutePolicy stringId 
- Version int
- The version of the Feature
- authenticationType String
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType StringVariable 
- Variable name
- autonomousSystem IntegerId 
- Set autonomous system ID <1..65535> - Range: 1-65535
- autonomousSystem StringId Variable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- 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
- helloInterval StringVariable 
- Variable name
- hmacAuthentication StringKey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- hmacAuthentication StringKey Variable 
- Variable name
- holdTime Integer
- Set EIGRP hold time - Range: 0-65535- Default value:15
- holdTime StringVariable 
- Variable name
- interfaces
List<ServiceRouting Eigrp Feature Interface> 
- Configure IPv4 Static Routes
- md5Keys
List<ServiceRouting Eigrp Feature Md5Key> 
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- name String
- The name of the Feature
- networks
List<ServiceRouting Eigrp Feature Network> 
- Configure the networks for EIGRP to advertise
- redistributes
List<ServiceRouting Eigrp Feature Redistribute> 
- Redistribute routes into EIGRP
- routePolicy StringId 
- version Integer
- The version of the Feature
- authenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType stringVariable 
- Variable name
- autonomousSystem numberId 
- Set autonomous system ID <1..65535> - Range: 1-65535
- autonomousSystem stringId Variable 
- Variable name
- description string
- The description of the Feature
- featureProfile stringId 
- 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
- helloInterval stringVariable 
- Variable name
- hmacAuthentication stringKey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- hmacAuthentication stringKey Variable 
- Variable name
- holdTime number
- Set EIGRP hold time - Range: 0-65535- Default value:15
- holdTime stringVariable 
- Variable name
- interfaces
ServiceRouting Eigrp Feature Interface[] 
- Configure IPv4 Static Routes
- md5Keys
ServiceRouting Eigrp Feature Md5Key[] 
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- name string
- The name of the Feature
- networks
ServiceRouting Eigrp Feature Network[] 
- Configure the networks for EIGRP to advertise
- redistributes
ServiceRouting Eigrp Feature Redistribute[] 
- Redistribute routes into EIGRP
- routePolicy stringId 
- version number
- The version of the Feature
- authentication_type str
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authentication_type_ strvariable 
- Variable name
- autonomous_system_ intid 
- Set autonomous system ID <1..65535> - Range: 1-65535
- autonomous_system_ strid_ variable 
- Variable name
- description str
- The description of the Feature
- feature_profile_ strid 
- 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_ strvariable 
- Variable name
- hmac_authentication_ strkey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- hmac_authentication_ strkey_ variable 
- Variable name
- hold_time int
- Set EIGRP hold time - Range: 0-65535- Default value:15
- hold_time_ strvariable 
- Variable name
- interfaces
Sequence[ServiceRouting Eigrp Feature Interface Args] 
- Configure IPv4 Static Routes
- md5_keys Sequence[ServiceRouting Eigrp Feature Md5Key Args] 
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- name str
- The name of the Feature
- networks
Sequence[ServiceRouting Eigrp Feature Network Args] 
- Configure the networks for EIGRP to advertise
- redistributes
Sequence[ServiceRouting Eigrp Feature Redistribute Args] 
- Redistribute routes into EIGRP
- route_policy_ strid 
- version int
- The version of the Feature
- authenticationType String
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType StringVariable 
- Variable name
- autonomousSystem NumberId 
- Set autonomous system ID <1..65535> - Range: 1-65535
- autonomousSystem StringId Variable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- 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
- helloInterval StringVariable 
- Variable name
- hmacAuthentication StringKey 
- Set hmac-sha-256 authentication key, Attribute conditional on authentication_typebeing equal tohmac-sha-256
- hmacAuthentication StringKey Variable 
- Variable name
- holdTime Number
- Set EIGRP hold time - Range: 0-65535- Default value:15
- holdTime StringVariable 
- Variable name
- interfaces List<Property Map>
- Configure IPv4 Static Routes
- md5Keys List<Property Map>
- Set keychain details, Attribute conditional on authentication_typebeing equal tomd5
- 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
- routePolicy StringId 
- 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
 
- Default value: 
- ShutdownVariable string
- Variable name
- SummaryAddresses List<ServiceRouting Eigrp Feature Interface Summary Address> 
- Set summary addresses
- Name string
- Set interface name
- NameVariable string
- Variable name
- Shutdown bool
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- ShutdownVariable string
- Variable name
- SummaryAddresses []ServiceRouting Eigrp Feature Interface Summary Address 
- Set summary addresses
- name String
- Set interface name
- nameVariable String
- Variable name
- shutdown Boolean
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- shutdownVariable String
- Variable name
- summaryAddresses List<ServiceRouting Eigrp Feature Interface Summary Address> 
- Set summary addresses
- name string
- Set interface name
- nameVariable string
- Variable name
- shutdown boolean
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- shutdownVariable string
- Variable name
- summaryAddresses ServiceRouting Eigrp Feature Interface Summary Address[] 
- Set summary addresses
- name str
- Set interface name
- name_variable str
- Variable name
- shutdown bool
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- shutdown_variable str
- Variable name
- summary_addresses Sequence[ServiceRouting Eigrp Feature Interface Summary Address] 
- Set summary addresses
- name String
- Set interface name
- nameVariable String
- Variable name
- shutdown Boolean
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- 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
 
- Choices: 
- 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
 
- Choices: 
- 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
 
- Choices: 
- 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
 
- Choices: 
- 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
 
- Choices: 
- 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
 
- Choices: 
- maskVariable String
- Variable name
ServiceRoutingEigrpFeatureMd5Key, ServiceRoutingEigrpFeatureMd5KeyArgs          
- KeyId int
- Set MD5 key ID- Range: 1-255
 
- Range: 
- KeyId stringVariable 
- Variable name
- KeyString string
- Set MD5 key
- KeyString stringVariable 
- Variable name
- KeyId int
- Set MD5 key ID- Range: 1-255
 
- Range: 
- KeyId stringVariable 
- Variable name
- KeyString string
- Set MD5 key
- KeyString stringVariable 
- Variable name
- keyId Integer
- Set MD5 key ID- Range: 1-255
 
- Range: 
- keyId StringVariable 
- Variable name
- keyString String
- Set MD5 key
- keyString StringVariable 
- Variable name
- keyId number
- Set MD5 key ID- Range: 1-255
 
- Range: 
- keyId stringVariable 
- Variable name
- keyString string
- Set MD5 key
- keyString stringVariable 
- Variable name
- key_id int
- Set MD5 key ID- Range: 1-255
 
- Range: 
- key_id_ strvariable 
- Variable name
- key_string str
- Set MD5 key
- key_string_ strvariable 
- Variable name
- keyId Number
- Set MD5 key ID- Range: 1-255
 
- Range: 
- keyId StringVariable 
- Variable name
- keyString String
- Set MD5 key
- keyString StringVariable 
- Variable name
ServiceRoutingEigrpFeatureNetwork, ServiceRoutingEigrpFeatureNetworkArgs          
- IpAddress string
- IpAddress stringVariable 
- 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
 
- Choices: 
- MaskVariable string
- Variable name
- IpAddress string
- IpAddress stringVariable 
- 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
 
- Choices: 
- MaskVariable string
- Variable name
- ipAddress String
- ipAddress StringVariable 
- 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
 
- Choices: 
- maskVariable String
- Variable name
- ipAddress string
- ipAddress stringVariable 
- 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
 
- Choices: 
- maskVariable string
- Variable name
- ip_address str
- ip_address_ strvariable 
- 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
 
- Choices: 
- mask_variable str
- Variable name
- ipAddress String
- ipAddress StringVariable 
- 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
 
- Choices: 
- maskVariable String
- Variable name
ServiceRoutingEigrpFeatureRedistribute, ServiceRoutingEigrpFeatureRedistributeArgs          
- Protocol string
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- ProtocolVariable string
- Variable name
- RoutePolicy stringId 
- Protocol string
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- ProtocolVariable string
- Variable name
- RoutePolicy stringId 
- protocol String
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- protocolVariable String
- Variable name
- routePolicy StringId 
- protocol string
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- protocolVariable string
- Variable name
- routePolicy stringId 
- protocol str
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- protocol_variable str
- Variable name
- route_policy_ strid 
- protocol String
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- protocolVariable String
- Variable name
- routePolicy StringId 
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"
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 sdwanTerraform Provider.
