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
- Device
Types 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
- Address
Families List<EigrpFeature Template Address Family> - Set EIGRP address family
- As
Number int - Set autonomous system ID <1..65535> - Range:
1
-65535
- As
Number stringVariable - Variable name
- Authentication
Type string - Set EIGRP router authentication type - Choices:
md5
,hmac-sha-256
- Authentication
Type stringVariable - Variable name
- Filter bool
- Selective route download - Default value:
false
- Filter
Variable string - Variable name
- Hello
Interval int - Set EIGRP hello interval - Range:
0
-65535
- Default value:5
- Hello
Interval stringVariable - Variable name
- Hmac
Authentication stringKey - Set hmac-sha-256 authentication key
- Hmac
Authentication stringKey Variable - Variable name
- Hold
Time int - Set EIGRP hold time - Range:
0
-65535
- Default value:15
- Hold
Time stringVariable - Variable name
- Interfaces
List<Eigrp
Feature Template Interface> - Configure IPv4 Static Routes
- Keys
List<Eigrp
Feature Template Key> - Set keychain name
- Name string
- The name of the feature template
- Route
Policy stringName - Configure policy to apply to prefixes received from EIGRP neighbor
- Route
Policy stringName Variable - Variable name
- Description string
- The description of the feature template
- Device
Types []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
- Address
Families []EigrpFeature Template Address Family Args - Set EIGRP address family
- As
Number int - Set autonomous system ID <1..65535> - Range:
1
-65535
- As
Number stringVariable - Variable name
- Authentication
Type string - Set EIGRP router authentication type - Choices:
md5
,hmac-sha-256
- Authentication
Type stringVariable - Variable name
- Filter bool
- Selective route download - Default value:
false
- Filter
Variable string - Variable name
- Hello
Interval int - Set EIGRP hello interval - Range:
0
-65535
- Default value:5
- Hello
Interval stringVariable - Variable name
- Hmac
Authentication stringKey - Set hmac-sha-256 authentication key
- Hmac
Authentication stringKey Variable - Variable name
- Hold
Time int - Set EIGRP hold time - Range:
0
-65535
- Default value:15
- Hold
Time stringVariable - Variable name
- Interfaces
[]Eigrp
Feature Template Interface Args - Configure IPv4 Static Routes
- Keys
[]Eigrp
Feature Template Key Args - Set keychain name
- Name string
- The name of the feature template
- Route
Policy stringName - Configure policy to apply to prefixes received from EIGRP neighbor
- Route
Policy stringName Variable - Variable name
- description String
- The description of the feature template
- device
Types 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
- address
Families List<EigrpFeature Template Address Family> - Set EIGRP address family
- as
Number Integer - Set autonomous system ID <1..65535> - Range:
1
-65535
- as
Number StringVariable - Variable name
- authentication
Type String - Set EIGRP router authentication type - Choices:
md5
,hmac-sha-256
- authentication
Type StringVariable - Variable name
- filter Boolean
- Selective route download - Default value:
false
- filter
Variable String - Variable name
- hello
Interval Integer - Set EIGRP hello interval - Range:
0
-65535
- Default value:5
- hello
Interval StringVariable - Variable name
- hmac
Authentication StringKey - Set hmac-sha-256 authentication key
- hmac
Authentication StringKey Variable - Variable name
- hold
Time Integer - Set EIGRP hold time - Range:
0
-65535
- Default value:15
- hold
Time StringVariable - Variable name
- interfaces
List<Eigrp
Feature Template Interface> - Configure IPv4 Static Routes
- keys
List<Eigrp
Feature Template Key> - Set keychain name
- name String
- The name of the feature template
- route
Policy StringName - Configure policy to apply to prefixes received from EIGRP neighbor
- route
Policy StringName Variable - Variable name
- description string
- The description of the feature template
- device
Types 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
- address
Families EigrpFeature Template Address Family[] - Set EIGRP address family
- as
Number number - Set autonomous system ID <1..65535> - Range:
1
-65535
- as
Number stringVariable - Variable name
- authentication
Type string - Set EIGRP router authentication type - Choices:
md5
,hmac-sha-256
- authentication
Type stringVariable - Variable name
- filter boolean
- Selective route download - Default value:
false
- filter
Variable string - Variable name
- hello
Interval number - Set EIGRP hello interval - Range:
0
-65535
- Default value:5
- hello
Interval stringVariable - Variable name
- hmac
Authentication stringKey - Set hmac-sha-256 authentication key
- hmac
Authentication stringKey Variable - Variable name
- hold
Time number - Set EIGRP hold time - Range:
0
-65535
- Default value:15
- hold
Time stringVariable - Variable name
- interfaces
Eigrp
Feature Template Interface[] - Configure IPv4 Static Routes
- keys
Eigrp
Feature Template Key[] - Set keychain name
- name string
- The name of the feature template
- route
Policy stringName - Configure policy to apply to prefixes received from EIGRP neighbor
- route
Policy 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[Eigrp
Feature Template Interface Args] - Configure IPv4 Static Routes
- keys
Sequence[Eigrp
Feature 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
- device
Types 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
- address
Families List<Property Map> - Set EIGRP address family
- as
Number Number - Set autonomous system ID <1..65535> - Range:
1
-65535
- as
Number StringVariable - Variable name
- authentication
Type String - Set EIGRP router authentication type - Choices:
md5
,hmac-sha-256
- authentication
Type StringVariable - Variable name
- filter Boolean
- Selective route download - Default value:
false
- filter
Variable String - Variable name
- hello
Interval Number - Set EIGRP hello interval - Range:
0
-65535
- Default value:5
- hello
Interval StringVariable - Variable name
- hmac
Authentication StringKey - Set hmac-sha-256 authentication key
- hmac
Authentication StringKey Variable - Variable name
- hold
Time Number - Set EIGRP hold time - Range:
0
-65535
- Default value:15
- hold
Time 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
- route
Policy StringName - Configure policy to apply to prefixes received from EIGRP neighbor
- route
Policy 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.
- Template
Type string - The template type
- Version int
- The version of the feature template
- Id string
- The provider-assigned unique ID for this managed resource.
- Template
Type string - The template type
- Version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- template
Type String - The template type
- version Integer
- The version of the feature template
- id string
- The provider-assigned unique ID for this managed resource.
- template
Type 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.
- template
Type String - The template type
- version Number
- The version of the feature template
Look up Existing EigrpFeatureTemplate Resource
Get an existing EigrpFeatureTemplate resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EigrpFeatureTemplateState, opts?: CustomResourceOptions): EigrpFeatureTemplate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address_families: Optional[Sequence[EigrpFeatureTemplateAddressFamilyArgs]] = None,
as_number: Optional[int] = None,
as_number_variable: Optional[str] = None,
authentication_type: Optional[str] = None,
authentication_type_variable: Optional[str] = None,
description: Optional[str] = None,
device_types: Optional[Sequence[str]] = None,
filter: Optional[bool] = None,
filter_variable: Optional[str] = None,
hello_interval: Optional[int] = None,
hello_interval_variable: Optional[str] = None,
hmac_authentication_key: Optional[str] = None,
hmac_authentication_key_variable: Optional[str] = None,
hold_time: Optional[int] = None,
hold_time_variable: Optional[str] = None,
interfaces: Optional[Sequence[EigrpFeatureTemplateInterfaceArgs]] = None,
keys: Optional[Sequence[EigrpFeatureTemplateKeyArgs]] = None,
name: Optional[str] = None,
route_policy_name: Optional[str] = None,
route_policy_name_variable: Optional[str] = None,
template_type: Optional[str] = None,
version: Optional[int] = None) -> EigrpFeatureTemplate
func GetEigrpFeatureTemplate(ctx *Context, name string, id IDInput, state *EigrpFeatureTemplateState, opts ...ResourceOption) (*EigrpFeatureTemplate, error)
public static EigrpFeatureTemplate Get(string name, Input<string> id, EigrpFeatureTemplateState? state, CustomResourceOptions? opts = null)
public static EigrpFeatureTemplate get(String name, Output<String> id, EigrpFeatureTemplateState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Address
Families List<EigrpFeature Template Address Family> - Set EIGRP address family
- As
Number int - Set autonomous system ID <1..65535> - Range:
1
-65535
- As
Number stringVariable - Variable name
- Authentication
Type string - Set EIGRP router authentication type - Choices:
md5
,hmac-sha-256
- Authentication
Type stringVariable - Variable name
- Description string
- The description of the feature template
- Device
Types 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
- Filter
Variable string - Variable name
- Hello
Interval int - Set EIGRP hello interval - Range:
0
-65535
- Default value:5
- Hello
Interval stringVariable - Variable name
- Hmac
Authentication stringKey - Set hmac-sha-256 authentication key
- Hmac
Authentication stringKey Variable - Variable name
- Hold
Time int - Set EIGRP hold time - Range:
0
-65535
- Default value:15
- Hold
Time stringVariable - Variable name
- Interfaces
List<Eigrp
Feature Template Interface> - Configure IPv4 Static Routes
- Keys
List<Eigrp
Feature Template Key> - Set keychain name
- Name string
- The name of the feature template
- Route
Policy stringName - Configure policy to apply to prefixes received from EIGRP neighbor
- Route
Policy stringName Variable - Variable name
- Template
Type string - The template type
- Version int
- The version of the feature template
- Address
Families []EigrpFeature Template Address Family Args - Set EIGRP address family
- As
Number int - Set autonomous system ID <1..65535> - Range:
1
-65535
- As
Number stringVariable - Variable name
- Authentication
Type string - Set EIGRP router authentication type - Choices:
md5
,hmac-sha-256
- Authentication
Type stringVariable - Variable name
- Description string
- The description of the feature template
- Device
Types []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
- Filter
Variable string - Variable name
- Hello
Interval int - Set EIGRP hello interval - Range:
0
-65535
- Default value:5
- Hello
Interval stringVariable - Variable name
- Hmac
Authentication stringKey - Set hmac-sha-256 authentication key
- Hmac
Authentication stringKey Variable - Variable name
- Hold
Time int - Set EIGRP hold time - Range:
0
-65535
- Default value:15
- Hold
Time stringVariable - Variable name
- Interfaces
[]Eigrp
Feature Template Interface Args - Configure IPv4 Static Routes
- Keys
[]Eigrp
Feature Template Key Args - Set keychain name
- Name string
- The name of the feature template
- Route
Policy stringName - Configure policy to apply to prefixes received from EIGRP neighbor
- Route
Policy stringName Variable - Variable name
- Template
Type string - The template type
- Version int
- The version of the feature template
- address
Families List<EigrpFeature Template Address Family> - Set EIGRP address family
- as
Number Integer - Set autonomous system ID <1..65535> - Range:
1
-65535
- as
Number StringVariable - Variable name
- authentication
Type String - Set EIGRP router authentication type - Choices:
md5
,hmac-sha-256
- authentication
Type StringVariable - Variable name
- description String
- The description of the feature template
- device
Types 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
- filter
Variable String - Variable name
- hello
Interval Integer - Set EIGRP hello interval - Range:
0
-65535
- Default value:5
- hello
Interval StringVariable - Variable name
- hmac
Authentication StringKey - Set hmac-sha-256 authentication key
- hmac
Authentication StringKey Variable - Variable name
- hold
Time Integer - Set EIGRP hold time - Range:
0
-65535
- Default value:15
- hold
Time StringVariable - Variable name
- interfaces
List<Eigrp
Feature Template Interface> - Configure IPv4 Static Routes
- keys
List<Eigrp
Feature Template Key> - Set keychain name
- name String
- The name of the feature template
- route
Policy StringName - Configure policy to apply to prefixes received from EIGRP neighbor
- route
Policy StringName Variable - Variable name
- template
Type String - The template type
- version Integer
- The version of the feature template
- address
Families EigrpFeature Template Address Family[] - Set EIGRP address family
- as
Number number - Set autonomous system ID <1..65535> - Range:
1
-65535
- as
Number stringVariable - Variable name
- authentication
Type string - Set EIGRP router authentication type - Choices:
md5
,hmac-sha-256
- authentication
Type stringVariable - Variable name
- description string
- The description of the feature template
- device
Types 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
- filter
Variable string - Variable name
- hello
Interval number - Set EIGRP hello interval - Range:
0
-65535
- Default value:5
- hello
Interval stringVariable - Variable name
- hmac
Authentication stringKey - Set hmac-sha-256 authentication key
- hmac
Authentication stringKey Variable - Variable name
- hold
Time number - Set EIGRP hold time - Range:
0
-65535
- Default value:15
- hold
Time stringVariable - Variable name
- interfaces
Eigrp
Feature Template Interface[] - Configure IPv4 Static Routes
- keys
Eigrp
Feature Template Key[] - Set keychain name
- name string
- The name of the feature template
- route
Policy stringName - Configure policy to apply to prefixes received from EIGRP neighbor
- route
Policy stringName Variable - Variable name
- template
Type 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[Eigrp
Feature Template Interface Args] - Configure IPv4 Static Routes
- keys
Sequence[Eigrp
Feature 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
- address
Families List<Property Map> - Set EIGRP address family
- as
Number Number - Set autonomous system ID <1..65535> - Range:
1
-65535
- as
Number StringVariable - Variable name
- authentication
Type String - Set EIGRP router authentication type - Choices:
md5
,hmac-sha-256
- authentication
Type StringVariable - Variable name
- description String
- The description of the feature template
- device
Types 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
- filter
Variable String - Variable name
- hello
Interval Number - Set EIGRP hello interval - Range:
0
-65535
- Default value:5
- hello
Interval StringVariable - Variable name
- hmac
Authentication StringKey - Set hmac-sha-256 authentication key
- hmac
Authentication StringKey Variable - Variable name
- hold
Time Number - Set EIGRP hold time - Range:
0
-65535
- Default value:15
- hold
Time 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
- route
Policy StringName - Configure policy to apply to prefixes received from EIGRP neighbor
- route
Policy StringName Variable - Variable name
- template
Type String - The template type
- version Number
- The version of the feature template
Supporting Types
EigrpFeatureTemplateAddressFamily, EigrpFeatureTemplateAddressFamilyArgs
- Networks
List<Eigrp
Feature Template Address Family Network> - Configure the networks for EIGRP to advertise
- Optional bool
- Indicates if list item is considered optional.
- Redistributes
List<Eigrp
Feature Template Address Family Redistribute> - Redistribute routes into EIGRP
- Type string
- Set EIGRP address family
- Choices:
ipv4
- Default value:
ipv4
- Choices:
- Networks
[]Eigrp
Feature Template Address Family Network - Configure the networks for EIGRP to advertise
- Optional bool
- Indicates if list item is considered optional.
- Redistributes
[]Eigrp
Feature Template Address Family Redistribute - Redistribute routes into EIGRP
- Type string
- Set EIGRP address family
- Choices:
ipv4
- Default value:
ipv4
- Choices:
- networks
List<Eigrp
Feature Template Address Family Network> - Configure the networks for EIGRP to advertise
- optional Boolean
- Indicates if list item is considered optional.
- redistributes
List<Eigrp
Feature Template Address Family Redistribute> - Redistribute routes into EIGRP
- type String
- Set EIGRP address family
- Choices:
ipv4
- Default value:
ipv4
- Choices:
- networks
Eigrp
Feature Template Address Family Network[] - Configure the networks for EIGRP to advertise
- optional boolean
- Indicates if list item is considered optional.
- redistributes
Eigrp
Feature Template Address Family Redistribute[] - Redistribute routes into EIGRP
- type string
- Set EIGRP address family
- Choices:
ipv4
- Default value:
ipv4
- Choices:
- networks
Sequence[Eigrp
Feature Template Address Family Network] - Configure the networks for EIGRP to advertise
- optional bool
- Indicates if list item is considered optional.
- redistributes
Sequence[Eigrp
Feature 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
- Prefix
Variable string - Variable name
- Optional bool
- Indicates if list item is considered optional.
- Prefix string
- Configure the prefixes for EIGRP to announce
- Prefix
Variable string - Variable name
- optional Boolean
- Indicates if list item is considered optional.
- prefix String
- Configure the prefixes for EIGRP to announce
- prefix
Variable String - Variable name
- optional boolean
- Indicates if list item is considered optional.
- prefix string
- Configure the prefixes for EIGRP to announce
- prefix
Variable 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
- prefix
Variable 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:
- Protocol
Variable string - Variable name
- Route
Policy string - Configure policy to apply to prefixes received from EIGRP neighbor
- Route
Policy 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:
- Protocol
Variable string - Variable name
- Route
Policy string - Configure policy to apply to prefixes received from EIGRP neighbor
- Route
Policy 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:
- protocol
Variable String - Variable name
- route
Policy String - Configure policy to apply to prefixes received from EIGRP neighbor
- route
Policy 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:
- protocol
Variable string - Variable name
- route
Policy string - Configure policy to apply to prefixes received from EIGRP neighbor
- route
Policy 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:
- protocol
Variable String - Variable name
- route
Policy String - Configure policy to apply to prefixes received from EIGRP neighbor
- route
Policy StringVariable - Variable name
EigrpFeatureTemplateInterface, EigrpFeatureTemplateInterfaceArgs
- Interface
Name string - Set interface name
- Interface
Name stringVariable - Variable name
- Optional bool
- Indicates if list item is considered optional.
- Shutdown bool
- Enable/disable EIGRP
- Default value:
false
- Default value:
- Shutdown
Variable string - Variable name
- Summary
Addresses List<EigrpFeature Template Interface Summary Address> - Set summary addresses
- Interface
Name string - Set interface name
- Interface
Name stringVariable - Variable name
- Optional bool
- Indicates if list item is considered optional.
- Shutdown bool
- Enable/disable EIGRP
- Default value:
false
- Default value:
- Shutdown
Variable string - Variable name
- Summary
Addresses []EigrpFeature Template Interface Summary Address - Set summary addresses
- interface
Name String - Set interface name
- interface
Name StringVariable - Variable name
- optional Boolean
- Indicates if list item is considered optional.
- shutdown Boolean
- Enable/disable EIGRP
- Default value:
false
- Default value:
- shutdown
Variable String - Variable name
- summary
Addresses List<EigrpFeature Template Interface Summary Address> - Set summary addresses
- interface
Name string - Set interface name
- interface
Name stringVariable - Variable name
- optional boolean
- Indicates if list item is considered optional.
- shutdown boolean
- Enable/disable EIGRP
- Default value:
false
- Default value:
- shutdown
Variable string - Variable name
- summary
Addresses 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
- interface
Name String - Set interface name
- interface
Name StringVariable - Variable name
- optional Boolean
- Indicates if list item is considered optional.
- shutdown Boolean
- Enable/disable EIGRP
- Default value:
false
- Default value:
- shutdown
Variable String - Variable name
- summary
Addresses List<Property Map> - Set summary addresses
EigrpFeatureTemplateInterfaceSummaryAddress, EigrpFeatureTemplateInterfaceSummaryAddressArgs
- Optional bool
- Indicates if list item is considered optional.
- Prefix string
- Set summary address prefix
- Prefix
Variable string - Variable name
- Optional bool
- Indicates if list item is considered optional.
- Prefix string
- Set summary address prefix
- Prefix
Variable string - Variable name
- optional Boolean
- Indicates if list item is considered optional.
- prefix String
- Set summary address prefix
- prefix
Variable String - Variable name
- optional boolean
- Indicates if list item is considered optional.
- prefix string
- Set summary address prefix
- prefix
Variable 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
- prefix
Variable String - Variable name
EigrpFeatureTemplateKey, EigrpFeatureTemplateKeyArgs
- Md5Authentication
Key string - Set MD5 key
- Md5Authentication
Key stringVariable - Variable name
- Md5Key
Id int - Set MD5 key ID
- Range:
1
-255
- Range:
- Md5Key
Id stringVariable - Variable name
- Optional bool
- Indicates if list item is considered optional.
- Md5Authentication
Key string - Set MD5 key
- Md5Authentication
Key stringVariable - Variable name
- Md5Key
Id int - Set MD5 key ID
- Range:
1
-255
- Range:
- Md5Key
Id stringVariable - Variable name
- Optional bool
- Indicates if list item is considered optional.
- md5Authentication
Key String - Set MD5 key
- md5Authentication
Key StringVariable - Variable name
- md5Key
Id Integer - Set MD5 key ID
- Range:
1
-255
- Range:
- md5Key
Id StringVariable - Variable name
- optional Boolean
- Indicates if list item is considered optional.
- md5Authentication
Key string - Set MD5 key
- md5Authentication
Key stringVariable - Variable name
- md5Key
Id number - Set MD5 key ID
- Range:
1
-255
- Range:
- md5Key
Id 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.
- md5Authentication
Key String - Set MD5 key
- md5Authentication
Key StringVariable - Variable name
- md5Key
Id Number - Set MD5 key ID
- Range:
1
-255
- Range:
- md5Key
Id 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
sdwan
Terraform Provider.