@@ -30,26 +30,26 @@ This resource can manage the BGP (VRF) address family configuration.
30
30
31
31
``` terraform
32
32
resource "nxos_bgp_address_family" "example" {
33
- asn = "65001"
34
- vrf = "default"
35
- address_family = "ipv4-ucast"
36
- critical_nexthop_timeout = "2500"
37
- non_critical_nexthop_timeout = "8000"
38
- adv_l2vpn_evpn = "disabled"
39
- adv_phyip_for_type5_routes = "disabled"
40
- max_ecmp_paths = 2
41
- max_ext_ecmp_paths = 1
42
- max_ext_int_ecmp_paths = 1
43
- max_eqcost_ecmp_paths = 1
44
- max_mixcost_ecmp_paths = 1
45
- def_inf_originate = "disabled"
46
- next_hop_route_map_name = "ROUTEMAP1"
47
- prefix_priority = "none"
48
- retain_rt_all = "disabled"
49
- adv_only_act_routes = "disabled"
50
- route_map_name = "ROUTE_MAP1"
51
- vni_ethtag = "disabled"
52
- wait_igp_conv = "disabled"
33
+ asn = "65001"
34
+ vrf = "default"
35
+ address_family = "ipv4-ucast"
36
+ critical_nexthop_timeout = "2500"
37
+ non_critical_nexthop_timeout = "8000"
38
+ advertise_l2vpn_evpn = "disabled"
39
+ advertise_physical_ip_for_type5_routes = "disabled"
40
+ max_ecmp_paths = 2
41
+ max_external_ecmp_paths = 1
42
+ max_external_internal_ecmp_paths = 1
43
+ max_local_ecmp_paths = 1
44
+ max_mixed_ecmp_paths = 1
45
+ default_information_originate = "disabled"
46
+ next_hop_route_map_name = "ROUTEMAP1"
47
+ prefix_priority = "none"
48
+ retain_rt_all = "disabled"
49
+ advertise_only_active_routes = "disabled"
50
+ table_map_route_map_name = "ROUTE_MAP1"
51
+ vni_ethernet_tag = "disabled"
52
+ wait_igp_converged = "disabled"
53
53
}
54
54
```
55
55
@@ -66,34 +66,34 @@ resource "nxos_bgp_address_family" "example" {
66
66
67
67
### Optional
68
68
69
- - ` adv_l2vpn_evpn ` (String) Enable or disable the advertisement of L2VPN EVPN routes.
69
+ - ` advertise_l2vpn_evpn ` (String) Enable or disable the advertisement of L2VPN EVPN routes.
70
70
- Choices: ` enabled ` , ` disabled `
71
71
- Default value: ` disabled `
72
- - ` adv_only_act_routes ` (String) Advertise only active routes to peers
72
+ - ` advertise_only_active_routes ` (String) Advertise only active routes to peers
73
73
- Choices: ` enabled ` , ` disabled `
74
74
- Default value: ` disabled `
75
- - ` adv_phyip_for_type5_routes ` (String) Advertise physical IP for type-5 routes
75
+ - ` advertise_physical_ip_for_type5_routes ` (String) Advertise physical IP for type-5 routes
76
76
- Choices: ` enabled ` , ` disabled `
77
77
- Default value: ` disabled `
78
78
- ` critical_nexthop_timeout ` (String) The next-hop address tracking delay timer for critical next-hop reachability routes.
79
79
- Default value: ` crit `
80
- - ` def_inf_originate ` (String) Enable or disable the default-information originate.
80
+ - ` default_information_originate ` (String) Enable or disable the default-information originate.
81
81
- Choices: ` enabled ` , ` disabled `
82
82
- Default value: ` disabled `
83
83
- ` device ` (String) A device name from the provider configuration.
84
84
- ` max_ecmp_paths ` (Number) Maximum number of ECMP paths.
85
85
- Range: ` 1 ` -` 128 `
86
86
- Default value: ` 1 `
87
- - ` max_eqcost_ecmp_paths ` (Number) Maximum number of equal-cost multipath for local paths ECMP paths.
87
+ - ` max_external_ecmp_paths ` (Number) Maximum number of external ECMP paths.
88
88
- Range: ` 1 ` -` 128 `
89
89
- Default value: ` 1 `
90
- - ` max_ext_ecmp_paths ` (Number) Maximum number of external ECMP paths.
90
+ - ` max_external_internal_ecmp_paths ` (Number) Maximum number of external/internal ECMP paths.
91
91
- Range: ` 1 ` -` 128 `
92
92
- Default value: ` 1 `
93
- - ` max_ext_int_ecmp_paths ` (Number) Maximum number of external/internal ECMP paths.
93
+ - ` max_local_ecmp_paths ` (Number) Maximum number of equal-cost multipath for local paths ECMP paths.
94
94
- Range: ` 1 ` -` 128 `
95
95
- Default value: ` 1 `
96
- - ` max_mixcost_ecmp_paths ` (Number) Maximum mixed equal-cost multipath for local and remote ECMP paths.
96
+ - ` max_mixed_ecmp_paths ` (Number) Maximum mixed equal-cost multipath for local and remote ECMP paths.
97
97
- Range: ` 1 ` -` 128 `
98
98
- Default value: ` 1 `
99
99
- ` next_hop_route_map_name ` (String) Next hope route map name
@@ -105,11 +105,11 @@ resource "nxos_bgp_address_family" "example" {
105
105
- ` retain_rt_all ` (String) Retain Route Target All
106
106
- Choices: ` enabled ` , ` disabled `
107
107
- Default value: ` disabled `
108
- - ` route_map_name ` (String) Route Map name
109
- - ` vni_ethtag ` (String) Allow VNI in Ethernet Tag field in EVPN route
108
+ - ` table_map_route_map_name ` (String) Route Map name
109
+ - ` vni_ethernet_tag ` (String) Allow VNI in Ethernet Tag field in EVPN route
110
110
- Choices: ` enabled ` , ` disabled `
111
111
- Default value: ` disabled `
112
- - ` wait_igp_conv ` (String) Delay initial bestpath until redistributed IGPs have converged
112
+ - ` wait_igp_converged ` (String) Delay initial bestpath until redistributed IGPs have converged
113
113
- Choices: ` enabled ` , ` disabled `
114
114
- Default value: ` disabled `
115
115
0 commit comments