Skip to content

Commit d1c5c0a

Browse files
committed
issue_474
1 parent 3f841c0 commit d1c5c0a

22 files changed

+61
-42
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.6.3 (Unreleased)
2+
3+
- Fix type of `interface` attribute of `sdwan_cisco_vpn_feature_template` under `ipv4_static_ipsec_routes` & `ipv4_static_gre_routes`
4+
- Fix type of `as_path_prepend` attribute of `sdwan_service_route_policy_feature` and `sdwan_transport_route_policy_feature`
5+
16
## 0.6.2
27

38
- Fix issue causing changes to applied feature templates to fail, [link](https://github.com/CiscoDevNet/terraform-provider-sdwan/issues/417)

docs/data-sources/cisco_vpn_feature_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Read-Only:
103103

104104
Read-Only:
105105

106-
- `interface` (Set of String) List of GRE Interfaces
106+
- `interface` (List of String) List of GRE Interfaces
107107
- `interface_variable` (String) Variable name
108108
- `optional` (Boolean) Indicates if list item is considered optional.
109109
- `prefix` (String) Prefix
@@ -116,7 +116,7 @@ Read-Only:
116116

117117
Read-Only:
118118

119-
- `interface` (Set of String) List of IPSEC Interfaces (Separated by commas)
119+
- `interface` (List of String) List of IPSEC Interfaces (Separated by commas)
120120
- `interface_variable` (String) Variable name
121121
- `optional` (Boolean) Indicates if list item is considered optional.
122122
- `prefix` (String) Prefix

docs/data-sources/service_route_policy_feature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Read-Only:
5252

5353
Read-Only:
5454

55-
- `as_path_prepend` (Set of Number)
55+
- `as_path_prepend` (List of Number)
5656
- `community` (Set of String)
5757
- `community_additive` (Boolean)
5858
- `community_variable` (String) Variable name

docs/data-sources/transport_route_policy_feature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Read-Only:
5252

5353
Read-Only:
5454

55-
- `as_path_prepend` (Set of Number)
55+
- `as_path_prepend` (List of Number)
5656
- `community` (Set of String)
5757
- `community_additive` (Boolean)
5858
- `community_variable` (String) Variable name

docs/guides/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ description: |-
77

88
# Changelog
99

10+
## 0.6.3 (Unreleased)
11+
12+
- Fix type of `interface` attribute of `sdwan_cisco_vpn_feature_template` under `ipv4_static_ipsec_routes` & `ipv4_static_gre_routes`
13+
- Fix type of `as_path_prepend` attribute of `sdwan_service_route_policy_feature` and `sdwan_transport_route_policy_feature`
14+
1015
## 0.6.2
1116

1217
- Fix issue causing changes to applied feature templates to fail, [link](https://github.com/CiscoDevNet/terraform-provider-sdwan/issues/417)

docs/resources/cisco_vpn_feature_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ Optional:
328328

329329
Optional:
330330

331-
- `interface` (Set of String) List of GRE Interfaces
331+
- `interface` (List of String) List of GRE Interfaces
332332
- `interface_variable` (String) Variable name
333333
- `optional` (Boolean) Indicates if list item is considered optional.
334334
- `prefix` (String) Prefix
@@ -342,7 +342,7 @@ Optional:
342342

343343
Optional:
344344

345-
- `interface` (Set of String) List of IPSEC Interfaces (Separated by commas)
345+
- `interface` (List of String) List of IPSEC Interfaces (Separated by commas)
346346
- `interface_variable` (String) Variable name
347347
- `optional` (Boolean) Indicates if list item is considered optional.
348348
- `prefix` (String) Prefix

docs/resources/service_route_policy_feature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Optional:
8989

9090
Optional:
9191

92-
- `as_path_prepend` (Set of Number)
92+
- `as_path_prepend` (List of Number)
9393
- `community` (Set of String)
9494
- `community_additive` (Boolean) - Default value: `false`
9595
- `community_variable` (String) Variable name

docs/resources/transport_route_policy_feature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Optional:
8989

9090
Optional:
9191

92-
- `as_path_prepend` (Set of Number)
92+
- `as_path_prepend` (List of Number)
9393
- `community` (Set of String)
9494
- `community_additive` (Boolean) - Default value: `false`
9595
- `community_variable` (String) Variable name

gen/definitions/feature_templates/cisco_vpn.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ attributes:
134134
tf_name: vpn_id
135135
example: 2
136136
- model_name: interface
137+
type: List
137138
example: e1
138139
- model_name: ipsec-route
139140
tf_name: ipv4_static_ipsec_routes
@@ -144,6 +145,7 @@ attributes:
144145
tf_name: vpn_id
145146
example: 2
146147
- model_name: interface
148+
type: List
147149
example: e1
148150
- model_name: advertise
149151
tf_name: omp_advertise_ipv4_routes

gen/definitions/profile_parcels/service_route_policy.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ attributes:
9999
- model_name: prepend
100100
tf_name: as_path_prepend
101101
data_path: [accept, setAsPath]
102+
type: List
103+
element_type: Int64
102104
example: 65521
103105
- model_name: additive
104106
tf_name: community_additive

0 commit comments

Comments
 (0)