sdwan.EigrpFeatureTemplate
Explore with Pulumi AI
This resource can manage a eigrp feature template.
- Minimum SD-WAN Manager version: 15.0.0
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.EigrpFeatureTemplate;
import com.pulumi.sdwan.EigrpFeatureTemplateArgs;
import com.pulumi.sdwan.inputs.EigrpFeatureTemplateAddressFamilyArgs;
import com.pulumi.sdwan.inputs.EigrpFeatureTemplateInterfaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var example = new EigrpFeatureTemplate("example", EigrpFeatureTemplateArgs.builder()
            .name("Example")
            .description("My Example")
            .deviceTypes("vedge-C8000V")
            .asNumber(1)
            .addressFamilies(EigrpFeatureTemplateAddressFamilyArgs.builder()
                .type("ipv4")
                .redistributes(EigrpFeatureTemplateAddressFamilyRedistributeArgs.builder()
                    .protocol("bgp")
                    .routePolicy("1.2.3.4")
                    .build())
                .networks(EigrpFeatureTemplateAddressFamilyNetworkArgs.builder()
                    .prefix("1.2.3.4/24")
                    .build())
                .build())
            .helloInterval(5)
            .holdTime(15)
            .routePolicyName("RP1")
            .filter(false)
            .authenticationType("hmac-sha-256")
            .hmacAuthenticationKey("myAuthKey")
            .interfaces(EigrpFeatureTemplateInterfaceArgs.builder()
                .interface_name("Ethernet1")
                .shutdown(false)
                .summary_addresses(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .build());
    }
}
resources:
  example:
    type: sdwan:EigrpFeatureTemplate
    properties:
      name: Example
      description: My Example
      deviceTypes:
        - vedge-C8000V
      asNumber: 1
      addressFamilies:
        - type: ipv4
          redistributes:
            - protocol: bgp
              routePolicy: 1.2.3.4
          networks:
            - prefix: 1.2.3.4/24
      helloInterval: 5
      holdTime: 15
      routePolicyName: RP1
      filter: false
      authenticationType: hmac-sha-256
      hmacAuthenticationKey: myAuthKey
      interfaces:
        - interface_name: Ethernet1
          shutdown: false
          summary_addresses:
            - prefix: 1.2.3.4/24
Create EigrpFeatureTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EigrpFeatureTemplate(name: string, args: EigrpFeatureTemplateArgs, opts?: CustomResourceOptions);@overload
def EigrpFeatureTemplate(resource_name: str,
                         args: EigrpFeatureTemplateArgs,
                         opts: Optional[ResourceOptions] = None)
@overload
def EigrpFeatureTemplate(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         description: Optional[str] = None,
                         device_types: Optional[Sequence[str]] = None,
                         hello_interval_variable: Optional[str] = None,
                         hmac_authentication_key: Optional[str] = None,
                         authentication_type_variable: Optional[str] = None,
                         as_number_variable: Optional[str] = None,
                         as_number: Optional[int] = None,
                         filter: Optional[bool] = None,
                         filter_variable: Optional[str] = None,
                         hello_interval: Optional[int] = None,
                         address_families: Optional[Sequence[EigrpFeatureTemplateAddressFamilyArgs]] = None,
                         authentication_type: Optional[str] = None,
                         hmac_authentication_key_variable: Optional[str] = None,
                         hold_time: Optional[int] = None,
                         hold_time_variable: Optional[str] = None,
                         interfaces: Optional[Sequence[EigrpFeatureTemplateInterfaceArgs]] = None,
                         keys: Optional[Sequence[EigrpFeatureTemplateKeyArgs]] = None,
                         name: Optional[str] = None,
                         route_policy_name: Optional[str] = None,
                         route_policy_name_variable: Optional[str] = None)func NewEigrpFeatureTemplate(ctx *Context, name string, args EigrpFeatureTemplateArgs, opts ...ResourceOption) (*EigrpFeatureTemplate, error)public EigrpFeatureTemplate(string name, EigrpFeatureTemplateArgs args, CustomResourceOptions? opts = null)
public EigrpFeatureTemplate(String name, EigrpFeatureTemplateArgs args)
public EigrpFeatureTemplate(String name, EigrpFeatureTemplateArgs args, CustomResourceOptions options)
type: sdwan:EigrpFeatureTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EigrpFeatureTemplateArgs
- 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 EigrpFeatureTemplateArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EigrpFeatureTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EigrpFeatureTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EigrpFeatureTemplateArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var eigrpFeatureTemplateResource = new Sdwan.EigrpFeatureTemplate("eigrpFeatureTemplateResource", new()
{
    Description = "string",
    DeviceTypes = new[]
    {
        "string",
    },
    HelloIntervalVariable = "string",
    HmacAuthenticationKey = "string",
    AuthenticationTypeVariable = "string",
    AsNumberVariable = "string",
    AsNumber = 0,
    Filter = false,
    FilterVariable = "string",
    HelloInterval = 0,
    AddressFamilies = new[]
    {
        new Sdwan.Inputs.EigrpFeatureTemplateAddressFamilyArgs
        {
            Networks = new[]
            {
                new Sdwan.Inputs.EigrpFeatureTemplateAddressFamilyNetworkArgs
                {
                    Optional = false,
                    Prefix = "string",
                    PrefixVariable = "string",
                },
            },
            Optional = false,
            Redistributes = new[]
            {
                new Sdwan.Inputs.EigrpFeatureTemplateAddressFamilyRedistributeArgs
                {
                    Optional = false,
                    Protocol = "string",
                    ProtocolVariable = "string",
                    RoutePolicy = "string",
                    RoutePolicyVariable = "string",
                },
            },
            Type = "string",
        },
    },
    AuthenticationType = "string",
    HmacAuthenticationKeyVariable = "string",
    HoldTime = 0,
    HoldTimeVariable = "string",
    Interfaces = new[]
    {
        new Sdwan.Inputs.EigrpFeatureTemplateInterfaceArgs
        {
            InterfaceName = "string",
            InterfaceNameVariable = "string",
            Optional = false,
            Shutdown = false,
            ShutdownVariable = "string",
            SummaryAddresses = new[]
            {
                new Sdwan.Inputs.EigrpFeatureTemplateInterfaceSummaryAddressArgs
                {
                    Optional = false,
                    Prefix = "string",
                    PrefixVariable = "string",
                },
            },
        },
    },
    Keys = new[]
    {
        new Sdwan.Inputs.EigrpFeatureTemplateKeyArgs
        {
            Md5AuthenticationKey = "string",
            Md5AuthenticationKeyVariable = "string",
            Md5KeyId = 0,
            Md5KeyIdVariable = "string",
            Optional = false,
        },
    },
    Name = "string",
    RoutePolicyName = "string",
    RoutePolicyNameVariable = "string",
});
example, err := sdwan.NewEigrpFeatureTemplate(ctx, "eigrpFeatureTemplateResource", &sdwan.EigrpFeatureTemplateArgs{
	Description: pulumi.String("string"),
	DeviceTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	HelloIntervalVariable:      pulumi.String("string"),
	HmacAuthenticationKey:      pulumi.String("string"),
	AuthenticationTypeVariable: pulumi.String("string"),
	AsNumberVariable:           pulumi.String("string"),
	AsNumber:                   pulumi.Int(0),
	Filter:                     pulumi.Bool(false),
	FilterVariable:             pulumi.String("string"),
	HelloInterval:              pulumi.Int(0),
	AddressFamilies: sdwan.EigrpFeatureTemplateAddressFamilyArray{
		&sdwan.EigrpFeatureTemplateAddressFamilyArgs{
			Networks: sdwan.EigrpFeatureTemplateAddressFamilyNetworkArray{
				&sdwan.EigrpFeatureTemplateAddressFamilyNetworkArgs{
					Optional:       pulumi.Bool(false),
					Prefix:         pulumi.String("string"),
					PrefixVariable: pulumi.String("string"),
				},
			},
			Optional: pulumi.Bool(false),
			Redistributes: sdwan.EigrpFeatureTemplateAddressFamilyRedistributeArray{
				&sdwan.EigrpFeatureTemplateAddressFamilyRedistributeArgs{
					Optional:            pulumi.Bool(false),
					Protocol:            pulumi.String("string"),
					ProtocolVariable:    pulumi.String("string"),
					RoutePolicy:         pulumi.String("string"),
					RoutePolicyVariable: pulumi.String("string"),
				},
			},
			Type: pulumi.String("string"),
		},
	},
	AuthenticationType:            pulumi.String("string"),
	HmacAuthenticationKeyVariable: pulumi.String("string"),
	HoldTime:                      pulumi.Int(0),
	HoldTimeVariable:              pulumi.String("string"),
	Interfaces: sdwan.EigrpFeatureTemplateInterfaceArray{
		&sdwan.EigrpFeatureTemplateInterfaceArgs{
			InterfaceName:         pulumi.String("string"),
			InterfaceNameVariable: pulumi.String("string"),
			Optional:              pulumi.Bool(false),
			Shutdown:              pulumi.Bool(false),
			ShutdownVariable:      pulumi.String("string"),
			SummaryAddresses: sdwan.EigrpFeatureTemplateInterfaceSummaryAddressArray{
				&sdwan.EigrpFeatureTemplateInterfaceSummaryAddressArgs{
					Optional:       pulumi.Bool(false),
					Prefix:         pulumi.String("string"),
					PrefixVariable: pulumi.String("string"),
				},
			},
		},
	},
	Keys: sdwan.EigrpFeatureTemplateKeyArray{
		&sdwan.EigrpFeatureTemplateKeyArgs{
			Md5AuthenticationKey:         pulumi.String("string"),
			Md5AuthenticationKeyVariable: pulumi.String("string"),
			Md5KeyId:                     pulumi.Int(0),
			Md5KeyIdVariable:             pulumi.String("string"),
			Optional:                     pulumi.Bool(false),
		},
	},
	Name:                    pulumi.String("string"),
	RoutePolicyName:         pulumi.String("string"),
	RoutePolicyNameVariable: pulumi.String("string"),
})
var eigrpFeatureTemplateResource = new EigrpFeatureTemplate("eigrpFeatureTemplateResource", EigrpFeatureTemplateArgs.builder()
    .description("string")
    .deviceTypes("string")
    .helloIntervalVariable("string")
    .hmacAuthenticationKey("string")
    .authenticationTypeVariable("string")
    .asNumberVariable("string")
    .asNumber(0)
    .filter(false)
    .filterVariable("string")
    .helloInterval(0)
    .addressFamilies(EigrpFeatureTemplateAddressFamilyArgs.builder()
        .networks(EigrpFeatureTemplateAddressFamilyNetworkArgs.builder()
            .optional(false)
            .prefix("string")
            .prefixVariable("string")
            .build())
        .optional(false)
        .redistributes(EigrpFeatureTemplateAddressFamilyRedistributeArgs.builder()
            .optional(false)
            .protocol("string")
            .protocolVariable("string")
            .routePolicy("string")
            .routePolicyVariable("string")
            .build())
        .type("string")
        .build())
    .authenticationType("string")
    .hmacAuthenticationKeyVariable("string")
    .holdTime(0)
    .holdTimeVariable("string")
    .interfaces(EigrpFeatureTemplateInterfaceArgs.builder()
        .interfaceName("string")
        .interfaceNameVariable("string")
        .optional(false)
        .shutdown(false)
        .shutdownVariable("string")
        .summaryAddresses(EigrpFeatureTemplateInterfaceSummaryAddressArgs.builder()
            .optional(false)
            .prefix("string")
            .prefixVariable("string")
            .build())
        .build())
    .keys(EigrpFeatureTemplateKeyArgs.builder()
        .md5AuthenticationKey("string")
        .md5AuthenticationKeyVariable("string")
        .md5KeyId(0)
        .md5KeyIdVariable("string")
        .optional(false)
        .build())
    .name("string")
    .routePolicyName("string")
    .routePolicyNameVariable("string")
    .build());
eigrp_feature_template_resource = sdwan.EigrpFeatureTemplate("eigrpFeatureTemplateResource",
    description="string",
    device_types=["string"],
    hello_interval_variable="string",
    hmac_authentication_key="string",
    authentication_type_variable="string",
    as_number_variable="string",
    as_number=0,
    filter=False,
    filter_variable="string",
    hello_interval=0,
    address_families=[{
        "networks": [{
            "optional": False,
            "prefix": "string",
            "prefix_variable": "string",
        }],
        "optional": False,
        "redistributes": [{
            "optional": False,
            "protocol": "string",
            "protocol_variable": "string",
            "route_policy": "string",
            "route_policy_variable": "string",
        }],
        "type": "string",
    }],
    authentication_type="string",
    hmac_authentication_key_variable="string",
    hold_time=0,
    hold_time_variable="string",
    interfaces=[{
        "interface_name": "string",
        "interface_name_variable": "string",
        "optional": False,
        "shutdown": False,
        "shutdown_variable": "string",
        "summary_addresses": [{
            "optional": False,
            "prefix": "string",
            "prefix_variable": "string",
        }],
    }],
    keys=[{
        "md5_authentication_key": "string",
        "md5_authentication_key_variable": "string",
        "md5_key_id": 0,
        "md5_key_id_variable": "string",
        "optional": False,
    }],
    name="string",
    route_policy_name="string",
    route_policy_name_variable="string")
const eigrpFeatureTemplateResource = new sdwan.EigrpFeatureTemplate("eigrpFeatureTemplateResource", {
    description: "string",
    deviceTypes: ["string"],
    helloIntervalVariable: "string",
    hmacAuthenticationKey: "string",
    authenticationTypeVariable: "string",
    asNumberVariable: "string",
    asNumber: 0,
    filter: false,
    filterVariable: "string",
    helloInterval: 0,
    addressFamilies: [{
        networks: [{
            optional: false,
            prefix: "string",
            prefixVariable: "string",
        }],
        optional: false,
        redistributes: [{
            optional: false,
            protocol: "string",
            protocolVariable: "string",
            routePolicy: "string",
            routePolicyVariable: "string",
        }],
        type: "string",
    }],
    authenticationType: "string",
    hmacAuthenticationKeyVariable: "string",
    holdTime: 0,
    holdTimeVariable: "string",
    interfaces: [{
        interfaceName: "string",
        interfaceNameVariable: "string",
        optional: false,
        shutdown: false,
        shutdownVariable: "string",
        summaryAddresses: [{
            optional: false,
            prefix: "string",
            prefixVariable: "string",
        }],
    }],
    keys: [{
        md5AuthenticationKey: "string",
        md5AuthenticationKeyVariable: "string",
        md5KeyId: 0,
        md5KeyIdVariable: "string",
        optional: false,
    }],
    name: "string",
    routePolicyName: "string",
    routePolicyNameVariable: "string",
});
type: sdwan:EigrpFeatureTemplate
properties:
    addressFamilies:
        - networks:
            - optional: false
              prefix: string
              prefixVariable: string
          optional: false
          redistributes:
            - optional: false
              protocol: string
              protocolVariable: string
              routePolicy: string
              routePolicyVariable: string
          type: string
    asNumber: 0
    asNumberVariable: string
    authenticationType: string
    authenticationTypeVariable: string
    description: string
    deviceTypes:
        - string
    filter: false
    filterVariable: string
    helloInterval: 0
    helloIntervalVariable: string
    hmacAuthenticationKey: string
    hmacAuthenticationKeyVariable: string
    holdTime: 0
    holdTimeVariable: string
    interfaces:
        - interfaceName: string
          interfaceNameVariable: string
          optional: false
          shutdown: false
          shutdownVariable: string
          summaryAddresses:
            - optional: false
              prefix: string
              prefixVariable: string
    keys:
        - md5AuthenticationKey: string
          md5AuthenticationKeyVariable: string
          md5KeyId: 0
          md5KeyIdVariable: string
          optional: false
    name: string
    routePolicyName: string
    routePolicyNameVariable: string
EigrpFeatureTemplate Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EigrpFeatureTemplate resource accepts the following input properties:
- Description string
- The description of the feature template
- DeviceTypes List<string>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- AddressFamilies List<EigrpFeature Template Address Family> 
- Set EIGRP address family
- AsNumber int
- Set autonomous system ID <1..65535> - Range: 1-65535
- AsNumber stringVariable 
- Variable name
- AuthenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- AuthenticationType stringVariable 
- Variable name
- Filter bool
- Selective route download - Default value: false
- FilterVariable string
- Variable name
- HelloInterval int
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- HelloInterval stringVariable 
- Variable name
- HmacAuthentication stringKey 
- Set hmac-sha-256 authentication key
- HmacAuthentication stringKey Variable 
- Variable name
- HoldTime int
- Set EIGRP hold time - Range: 0-65535- Default value:15
- HoldTime stringVariable 
- Variable name
- Interfaces
List<EigrpFeature Template Interface> 
- Configure IPv4 Static Routes
- Keys
List<EigrpFeature Template Key> 
- Set keychain name
- Name string
- The name of the feature template
- RoutePolicy stringName 
- Configure policy to apply to prefixes received from EIGRP neighbor
- RoutePolicy stringName Variable 
- Variable name
- Description string
- The description of the feature template
- DeviceTypes []string
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- AddressFamilies []EigrpFeature Template Address Family Args 
- Set EIGRP address family
- AsNumber int
- Set autonomous system ID <1..65535> - Range: 1-65535
- AsNumber stringVariable 
- Variable name
- AuthenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- AuthenticationType stringVariable 
- Variable name
- Filter bool
- Selective route download - Default value: false
- FilterVariable string
- Variable name
- HelloInterval int
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- HelloInterval stringVariable 
- Variable name
- HmacAuthentication stringKey 
- Set hmac-sha-256 authentication key
- HmacAuthentication stringKey Variable 
- Variable name
- HoldTime int
- Set EIGRP hold time - Range: 0-65535- Default value:15
- HoldTime stringVariable 
- Variable name
- Interfaces
[]EigrpFeature Template Interface Args 
- Configure IPv4 Static Routes
- Keys
[]EigrpFeature Template Key Args 
- Set keychain name
- Name string
- The name of the feature template
- RoutePolicy stringName 
- Configure policy to apply to prefixes received from EIGRP neighbor
- RoutePolicy stringName Variable 
- Variable name
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- addressFamilies List<EigrpFeature Template Address Family> 
- Set EIGRP address family
- asNumber Integer
- Set autonomous system ID <1..65535> - Range: 1-65535
- asNumber StringVariable 
- Variable name
- authenticationType String
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType StringVariable 
- Variable name
- filter Boolean
- Selective route download - Default value: false
- filterVariable String
- Variable name
- helloInterval Integer
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- helloInterval StringVariable 
- Variable name
- hmacAuthentication StringKey 
- Set hmac-sha-256 authentication key
- hmacAuthentication StringKey Variable 
- Variable name
- holdTime Integer
- Set EIGRP hold time - Range: 0-65535- Default value:15
- holdTime StringVariable 
- Variable name
- interfaces
List<EigrpFeature Template Interface> 
- Configure IPv4 Static Routes
- keys
List<EigrpFeature Template Key> 
- Set keychain name
- name String
- The name of the feature template
- routePolicy StringName 
- Configure policy to apply to prefixes received from EIGRP neighbor
- routePolicy StringName Variable 
- Variable name
- description string
- The description of the feature template
- deviceTypes string[]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- addressFamilies EigrpFeature Template Address Family[] 
- Set EIGRP address family
- asNumber number
- Set autonomous system ID <1..65535> - Range: 1-65535
- asNumber stringVariable 
- Variable name
- authenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType stringVariable 
- Variable name
- filter boolean
- Selective route download - Default value: false
- filterVariable string
- Variable name
- helloInterval number
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- helloInterval stringVariable 
- Variable name
- hmacAuthentication stringKey 
- Set hmac-sha-256 authentication key
- hmacAuthentication stringKey Variable 
- Variable name
- holdTime number
- Set EIGRP hold time - Range: 0-65535- Default value:15
- holdTime stringVariable 
- Variable name
- interfaces
EigrpFeature Template Interface[] 
- Configure IPv4 Static Routes
- keys
EigrpFeature Template Key[] 
- Set keychain name
- name string
- The name of the feature template
- routePolicy stringName 
- Configure policy to apply to prefixes received from EIGRP neighbor
- routePolicy stringName Variable 
- Variable name
- description str
- The description of the feature template
- device_types Sequence[str]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- address_families Sequence[EigrpFeature Template Address Family Args] 
- Set EIGRP address family
- as_number int
- Set autonomous system ID <1..65535> - Range: 1-65535
- as_number_ strvariable 
- Variable name
- authentication_type str
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authentication_type_ strvariable 
- Variable name
- filter bool
- Selective route download - Default value: false
- filter_variable str
- Variable name
- hello_interval int
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- hello_interval_ strvariable 
- Variable name
- hmac_authentication_ strkey 
- Set hmac-sha-256 authentication key
- 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[EigrpFeature Template Interface Args] 
- Configure IPv4 Static Routes
- keys
Sequence[EigrpFeature Template Key Args] 
- Set keychain name
- name str
- The name of the feature template
- route_policy_ strname 
- Configure policy to apply to prefixes received from EIGRP neighbor
- route_policy_ strname_ variable 
- Variable name
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- addressFamilies List<Property Map>
- Set EIGRP address family
- asNumber Number
- Set autonomous system ID <1..65535> - Range: 1-65535
- asNumber StringVariable 
- Variable name
- authenticationType String
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType StringVariable 
- Variable name
- filter Boolean
- Selective route download - Default value: false
- filterVariable String
- Variable name
- helloInterval Number
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- helloInterval StringVariable 
- Variable name
- hmacAuthentication StringKey 
- Set hmac-sha-256 authentication key
- 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
- keys List<Property Map>
- Set keychain name
- name String
- The name of the feature template
- routePolicy StringName 
- Configure policy to apply to prefixes received from EIGRP neighbor
- routePolicy StringName Variable 
- Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the EigrpFeatureTemplate resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- TemplateType string
- The template type
- Version int
- The version of the feature template
- Id string
- The provider-assigned unique ID for this managed resource.
- TemplateType string
- The template type
- Version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- templateType String
- The template type
- version Integer
- The version of the feature template
- id string
- The provider-assigned unique ID for this managed resource.
- templateType string
- The template type
- version number
- The version of the feature template
- id str
- The provider-assigned unique ID for this managed resource.
- template_type str
- The template type
- version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- templateType String
- The template type
- version Number
- The version of the feature template
Look up Existing EigrpFeatureTemplate Resource
Get an existing EigrpFeatureTemplate resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EigrpFeatureTemplateState, opts?: CustomResourceOptions): EigrpFeatureTemplate@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        address_families: Optional[Sequence[EigrpFeatureTemplateAddressFamilyArgs]] = None,
        as_number: Optional[int] = None,
        as_number_variable: Optional[str] = None,
        authentication_type: Optional[str] = None,
        authentication_type_variable: Optional[str] = None,
        description: Optional[str] = None,
        device_types: Optional[Sequence[str]] = None,
        filter: Optional[bool] = None,
        filter_variable: Optional[str] = None,
        hello_interval: Optional[int] = None,
        hello_interval_variable: Optional[str] = None,
        hmac_authentication_key: Optional[str] = None,
        hmac_authentication_key_variable: Optional[str] = None,
        hold_time: Optional[int] = None,
        hold_time_variable: Optional[str] = None,
        interfaces: Optional[Sequence[EigrpFeatureTemplateInterfaceArgs]] = None,
        keys: Optional[Sequence[EigrpFeatureTemplateKeyArgs]] = None,
        name: Optional[str] = None,
        route_policy_name: Optional[str] = None,
        route_policy_name_variable: Optional[str] = None,
        template_type: Optional[str] = None,
        version: Optional[int] = None) -> EigrpFeatureTemplatefunc GetEigrpFeatureTemplate(ctx *Context, name string, id IDInput, state *EigrpFeatureTemplateState, opts ...ResourceOption) (*EigrpFeatureTemplate, error)public static EigrpFeatureTemplate Get(string name, Input<string> id, EigrpFeatureTemplateState? state, CustomResourceOptions? opts = null)public static EigrpFeatureTemplate get(String name, Output<String> id, EigrpFeatureTemplateState state, CustomResourceOptions options)resources:  _:    type: sdwan:EigrpFeatureTemplate    get:      id: ${id}- name
- 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.
- AddressFamilies List<EigrpFeature Template Address Family> 
- Set EIGRP address family
- AsNumber int
- Set autonomous system ID <1..65535> - Range: 1-65535
- AsNumber stringVariable 
- Variable name
- AuthenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- AuthenticationType stringVariable 
- Variable name
- Description string
- The description of the feature template
- DeviceTypes List<string>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Filter bool
- Selective route download - Default value: false
- FilterVariable string
- Variable name
- HelloInterval int
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- HelloInterval stringVariable 
- Variable name
- HmacAuthentication stringKey 
- Set hmac-sha-256 authentication key
- HmacAuthentication stringKey Variable 
- Variable name
- HoldTime int
- Set EIGRP hold time - Range: 0-65535- Default value:15
- HoldTime stringVariable 
- Variable name
- Interfaces
List<EigrpFeature Template Interface> 
- Configure IPv4 Static Routes
- Keys
List<EigrpFeature Template Key> 
- Set keychain name
- Name string
- The name of the feature template
- RoutePolicy stringName 
- Configure policy to apply to prefixes received from EIGRP neighbor
- RoutePolicy stringName Variable 
- Variable name
- TemplateType string
- The template type
- Version int
- The version of the feature template
- AddressFamilies []EigrpFeature Template Address Family Args 
- Set EIGRP address family
- AsNumber int
- Set autonomous system ID <1..65535> - Range: 1-65535
- AsNumber stringVariable 
- Variable name
- AuthenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- AuthenticationType stringVariable 
- Variable name
- Description string
- The description of the feature template
- DeviceTypes []string
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Filter bool
- Selective route download - Default value: false
- FilterVariable string
- Variable name
- HelloInterval int
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- HelloInterval stringVariable 
- Variable name
- HmacAuthentication stringKey 
- Set hmac-sha-256 authentication key
- HmacAuthentication stringKey Variable 
- Variable name
- HoldTime int
- Set EIGRP hold time - Range: 0-65535- Default value:15
- HoldTime stringVariable 
- Variable name
- Interfaces
[]EigrpFeature Template Interface Args 
- Configure IPv4 Static Routes
- Keys
[]EigrpFeature Template Key Args 
- Set keychain name
- Name string
- The name of the feature template
- RoutePolicy stringName 
- Configure policy to apply to prefixes received from EIGRP neighbor
- RoutePolicy stringName Variable 
- Variable name
- TemplateType string
- The template type
- Version int
- The version of the feature template
- addressFamilies List<EigrpFeature Template Address Family> 
- Set EIGRP address family
- asNumber Integer
- Set autonomous system ID <1..65535> - Range: 1-65535
- asNumber StringVariable 
- Variable name
- authenticationType String
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType StringVariable 
- Variable name
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- filter Boolean
- Selective route download - Default value: false
- filterVariable String
- Variable name
- helloInterval Integer
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- helloInterval StringVariable 
- Variable name
- hmacAuthentication StringKey 
- Set hmac-sha-256 authentication key
- hmacAuthentication StringKey Variable 
- Variable name
- holdTime Integer
- Set EIGRP hold time - Range: 0-65535- Default value:15
- holdTime StringVariable 
- Variable name
- interfaces
List<EigrpFeature Template Interface> 
- Configure IPv4 Static Routes
- keys
List<EigrpFeature Template Key> 
- Set keychain name
- name String
- The name of the feature template
- routePolicy StringName 
- Configure policy to apply to prefixes received from EIGRP neighbor
- routePolicy StringName Variable 
- Variable name
- templateType String
- The template type
- version Integer
- The version of the feature template
- addressFamilies EigrpFeature Template Address Family[] 
- Set EIGRP address family
- asNumber number
- Set autonomous system ID <1..65535> - Range: 1-65535
- asNumber stringVariable 
- Variable name
- authenticationType string
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType stringVariable 
- Variable name
- description string
- The description of the feature template
- deviceTypes string[]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- filter boolean
- Selective route download - Default value: false
- filterVariable string
- Variable name
- helloInterval number
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- helloInterval stringVariable 
- Variable name
- hmacAuthentication stringKey 
- Set hmac-sha-256 authentication key
- hmacAuthentication stringKey Variable 
- Variable name
- holdTime number
- Set EIGRP hold time - Range: 0-65535- Default value:15
- holdTime stringVariable 
- Variable name
- interfaces
EigrpFeature Template Interface[] 
- Configure IPv4 Static Routes
- keys
EigrpFeature Template Key[] 
- Set keychain name
- name string
- The name of the feature template
- routePolicy stringName 
- Configure policy to apply to prefixes received from EIGRP neighbor
- routePolicy stringName Variable 
- Variable name
- templateType string
- The template type
- version number
- The version of the feature template
- address_families Sequence[EigrpFeature Template Address Family Args] 
- Set EIGRP address family
- as_number int
- Set autonomous system ID <1..65535> - Range: 1-65535
- as_number_ strvariable 
- Variable name
- authentication_type str
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authentication_type_ strvariable 
- Variable name
- description str
- The description of the feature template
- device_types Sequence[str]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- filter bool
- Selective route download - Default value: false
- filter_variable str
- Variable name
- hello_interval int
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- hello_interval_ strvariable 
- Variable name
- hmac_authentication_ strkey 
- Set hmac-sha-256 authentication key
- 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[EigrpFeature Template Interface Args] 
- Configure IPv4 Static Routes
- keys
Sequence[EigrpFeature Template Key Args] 
- Set keychain name
- name str
- The name of the feature template
- route_policy_ strname 
- Configure policy to apply to prefixes received from EIGRP neighbor
- route_policy_ strname_ variable 
- Variable name
- template_type str
- The template type
- version int
- The version of the feature template
- addressFamilies List<Property Map>
- Set EIGRP address family
- asNumber Number
- Set autonomous system ID <1..65535> - Range: 1-65535
- asNumber StringVariable 
- Variable name
- authenticationType String
- Set EIGRP router authentication type - Choices: md5,hmac-sha-256
- authenticationType StringVariable 
- Variable name
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- filter Boolean
- Selective route download - Default value: false
- filterVariable String
- Variable name
- helloInterval Number
- Set EIGRP hello interval - Range: 0-65535- Default value:5
- helloInterval StringVariable 
- Variable name
- hmacAuthentication StringKey 
- Set hmac-sha-256 authentication key
- 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
- keys List<Property Map>
- Set keychain name
- name String
- The name of the feature template
- routePolicy StringName 
- Configure policy to apply to prefixes received from EIGRP neighbor
- routePolicy StringName Variable 
- Variable name
- templateType String
- The template type
- version Number
- The version of the feature template
Supporting Types
EigrpFeatureTemplateAddressFamily, EigrpFeatureTemplateAddressFamilyArgs          
- Networks
List<EigrpFeature Template Address Family Network> 
- Configure the networks for EIGRP to advertise
- Optional bool
- Indicates if list item is considered optional.
- Redistributes
List<EigrpFeature Template Address Family Redistribute> 
- Redistribute routes into EIGRP
- Type string
- Set EIGRP address family- Choices: ipv4
- Default value: ipv4
 
- Choices: 
- Networks
[]EigrpFeature Template Address Family Network 
- Configure the networks for EIGRP to advertise
- Optional bool
- Indicates if list item is considered optional.
- Redistributes
[]EigrpFeature Template Address Family Redistribute 
- Redistribute routes into EIGRP
- Type string
- Set EIGRP address family- Choices: ipv4
- Default value: ipv4
 
- Choices: 
- networks
List<EigrpFeature Template Address Family Network> 
- Configure the networks for EIGRP to advertise
- optional Boolean
- Indicates if list item is considered optional.
- redistributes
List<EigrpFeature Template Address Family Redistribute> 
- Redistribute routes into EIGRP
- type String
- Set EIGRP address family- Choices: ipv4
- Default value: ipv4
 
- Choices: 
- networks
EigrpFeature Template Address Family Network[] 
- Configure the networks for EIGRP to advertise
- optional boolean
- Indicates if list item is considered optional.
- redistributes
EigrpFeature Template Address Family Redistribute[] 
- Redistribute routes into EIGRP
- type string
- Set EIGRP address family- Choices: ipv4
- Default value: ipv4
 
- Choices: 
- networks
Sequence[EigrpFeature Template Address Family Network] 
- Configure the networks for EIGRP to advertise
- optional bool
- Indicates if list item is considered optional.
- redistributes
Sequence[EigrpFeature Template Address Family Redistribute] 
- Redistribute routes into EIGRP
- type str
- Set EIGRP address family- Choices: ipv4
- Default value: ipv4
 
- Choices: 
- networks List<Property Map>
- Configure the networks for EIGRP to advertise
- optional Boolean
- Indicates if list item is considered optional.
- redistributes List<Property Map>
- Redistribute routes into EIGRP
- type String
- Set EIGRP address family- Choices: ipv4
- Default value: ipv4
 
- Choices: 
EigrpFeatureTemplateAddressFamilyNetwork, EigrpFeatureTemplateAddressFamilyNetworkArgs            
- Optional bool
- Indicates if list item is considered optional.
- Prefix string
- Configure the prefixes for EIGRP to announce
- PrefixVariable string
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- Prefix string
- Configure the prefixes for EIGRP to announce
- PrefixVariable string
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- prefix String
- Configure the prefixes for EIGRP to announce
- prefixVariable String
- Variable name
- optional boolean
- Indicates if list item is considered optional.
- prefix string
- Configure the prefixes for EIGRP to announce
- prefixVariable string
- Variable name
- optional bool
- Indicates if list item is considered optional.
- prefix str
- Configure the prefixes for EIGRP to announce
- prefix_variable str
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- prefix String
- Configure the prefixes for EIGRP to announce
- prefixVariable String
- Variable name
EigrpFeatureTemplateAddressFamilyRedistribute, EigrpFeatureTemplateAddressFamilyRedistributeArgs            
- Optional bool
- Indicates if list item is considered optional.
- Protocol string
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- ProtocolVariable string
- Variable name
- RoutePolicy string
- Configure policy to apply to prefixes received from EIGRP neighbor
- RoutePolicy stringVariable 
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- Protocol string
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- ProtocolVariable string
- Variable name
- RoutePolicy string
- Configure policy to apply to prefixes received from EIGRP neighbor
- RoutePolicy stringVariable 
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- protocol String
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- protocolVariable String
- Variable name
- routePolicy String
- Configure policy to apply to prefixes received from EIGRP neighbor
- routePolicy StringVariable 
- Variable name
- optional boolean
- Indicates if list item is considered optional.
- protocol string
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- protocolVariable string
- Variable name
- routePolicy string
- Configure policy to apply to prefixes received from EIGRP neighbor
- routePolicy stringVariable 
- Variable name
- optional bool
- Indicates if list item is considered optional.
- protocol str
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- protocol_variable str
- Variable name
- route_policy str
- Configure policy to apply to prefixes received from EIGRP neighbor
- route_policy_ strvariable 
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- protocol String
- Set the protocol to redistribute routes from- Choices: bgp,connected,nat-route,omp,ospf,ospfv3,static
 
- Choices: 
- protocolVariable String
- Variable name
- routePolicy String
- Configure policy to apply to prefixes received from EIGRP neighbor
- routePolicy StringVariable 
- Variable name
EigrpFeatureTemplateInterface, EigrpFeatureTemplateInterfaceArgs        
- InterfaceName string
- Set interface name
- InterfaceName stringVariable 
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- Shutdown bool
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- ShutdownVariable string
- Variable name
- SummaryAddresses List<EigrpFeature Template Interface Summary Address> 
- Set summary addresses
- InterfaceName string
- Set interface name
- InterfaceName stringVariable 
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- Shutdown bool
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- ShutdownVariable string
- Variable name
- SummaryAddresses []EigrpFeature Template Interface Summary Address 
- Set summary addresses
- interfaceName String
- Set interface name
- interfaceName StringVariable 
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- shutdown Boolean
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- shutdownVariable String
- Variable name
- summaryAddresses List<EigrpFeature Template Interface Summary Address> 
- Set summary addresses
- interfaceName string
- Set interface name
- interfaceName stringVariable 
- Variable name
- optional boolean
- Indicates if list item is considered optional.
- shutdown boolean
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- shutdownVariable string
- Variable name
- summaryAddresses EigrpFeature Template Interface Summary Address[] 
- Set summary addresses
- interface_name str
- Set interface name
- interface_name_ strvariable 
- Variable name
- optional bool
- Indicates if list item is considered optional.
- shutdown bool
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- shutdown_variable str
- Variable name
- summary_addresses Sequence[EigrpFeature Template Interface Summary Address] 
- Set summary addresses
- interfaceName String
- Set interface name
- interfaceName StringVariable 
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- shutdown Boolean
- Enable/disable EIGRP- Default value: false
 
- Default value: 
- shutdownVariable String
- Variable name
- summaryAddresses List<Property Map>
- Set summary addresses
EigrpFeatureTemplateInterfaceSummaryAddress, EigrpFeatureTemplateInterfaceSummaryAddressArgs            
- Optional bool
- Indicates if list item is considered optional.
- Prefix string
- Set summary address prefix
- PrefixVariable string
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- Prefix string
- Set summary address prefix
- PrefixVariable string
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- prefix String
- Set summary address prefix
- prefixVariable String
- Variable name
- optional boolean
- Indicates if list item is considered optional.
- prefix string
- Set summary address prefix
- prefixVariable string
- Variable name
- optional bool
- Indicates if list item is considered optional.
- prefix str
- Set summary address prefix
- prefix_variable str
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- prefix String
- Set summary address prefix
- prefixVariable String
- Variable name
EigrpFeatureTemplateKey, EigrpFeatureTemplateKeyArgs        
- Md5AuthenticationKey string
- Set MD5 key
- Md5AuthenticationKey stringVariable 
- Variable name
- Md5KeyId int
- Set MD5 key ID- Range: 1-255
 
- Range: 
- Md5KeyId stringVariable 
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- Md5AuthenticationKey string
- Set MD5 key
- Md5AuthenticationKey stringVariable 
- Variable name
- Md5KeyId int
- Set MD5 key ID- Range: 1-255
 
- Range: 
- Md5KeyId stringVariable 
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- md5AuthenticationKey String
- Set MD5 key
- md5AuthenticationKey StringVariable 
- Variable name
- md5KeyId Integer
- Set MD5 key ID- Range: 1-255
 
- Range: 
- md5KeyId StringVariable 
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- md5AuthenticationKey string
- Set MD5 key
- md5AuthenticationKey stringVariable 
- Variable name
- md5KeyId number
- Set MD5 key ID- Range: 1-255
 
- Range: 
- md5KeyId stringVariable 
- Variable name
- optional boolean
- Indicates if list item is considered optional.
- md5_authentication_ strkey 
- Set MD5 key
- md5_authentication_ strkey_ variable 
- Variable name
- md5_key_ intid 
- Set MD5 key ID- Range: 1-255
 
- Range: 
- md5_key_ strid_ variable 
- Variable name
- optional bool
- Indicates if list item is considered optional.
- md5AuthenticationKey String
- Set MD5 key
- md5AuthenticationKey StringVariable 
- Variable name
- md5KeyId Number
- Set MD5 key ID- Range: 1-255
 
- Range: 
- md5KeyId StringVariable 
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
Import
$ pulumi import sdwan:index/eigrpFeatureTemplate:EigrpFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd"
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.
