Skip to content

Commit 6b49e67

Browse files
authored
Merge pull request #689 from vmware/rel-325
Prepare for 3.2.5 release
2 parents 8987bc4 + 30dd2fe commit 6b49e67

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

Diff for: CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 3.2.5 (October 15, 2021)
2+
3+
BUG FIXES:
4+
5+
* `resource/nsxt_policy_gateway_route_map`: Allow multiple areas in AS path validation ([#666](https://github.com/vmware/terraform-provider-nsxt/pull/666))
6+
* `resource/nsxt_policy_intrusion_service_profile`: Fix potential non-empty plan issues by switching argument type from List to Set where appropriate. This fix is relevant with NSX 3.2 onwards ([#684](https://github.com/vmware/terraform-provider-nsxt/pull/684))
7+
8+
EXPERIMENTAL FEATURES:
9+
10+
* **New Data Source**: `nsxt_policy_lb_service`.
11+
* **New Data Source**: `nsxt_ns_groups`. This data source is introduced to address scale issues. Please note this data source uses non-policy (Manager) API and should only be used with features that have limited Policy support.
12+
* **New Data Source**: `nsxt_ns_services`. This data source is introduced to address scale issues. Please note this data source uses non-policy (Manager) API and should only be used with features that have limited Policy support.
13+
14+
IMPROVEMENTS:
15+
16+
* `resource/nsxt_policy_gateway_redistribution_config`: Add `bgp` and `ospf` markers to redistribution rules([#673](https://github.com/vmware/terraform-provider-nsxt/pull/673))
17+
* Introduce retries in selected resources to avoid most common deletion syncronization issues. This measure is temporary until provider-wide retry is implemented with SDK enhancement ([#681](https://github.com/vmware/terraform-provider-nsxt/pull/681), [#686](https://github.com/vmware/terraform-provider-nsxt/pull/686), [#687](https://github.com/vmware/terraform-provider-nsxt/pull/687))
18+
19+
NSX 3.2.0 NOTES:
20+
21+
* `data/nsxt_policy_edge_node`: Policy API for edge node has changed in NSX 3.2.0. While backwards compatibility is not broken with this resource, it is important to note that `path` attribute to edge node no longer reflects node UUID, but rather its ordinal value ([#679](https://github.com/vmware/terraform-provider-nsxt/pull/679))
22+
* Policy Segment resources: Following change in populating `advanced_config` segment sub-clause, there is a new nuance while importing segment resources with NSX 3.2.0. If you wish to import `advanced_config` settings, `advanced_config` needs to be specified in your terraform configuration prior to importing ([#671](https://github.com/vmware/terraform-provider-nsxt/pull/671))
23+
124
## 3.2.4 (August 26, 2021)
225

326
BUG FIXES:

Diff for: website/docs/d/ns_groups.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
subcategory: "Manager"
2+
subcategory: "Beta"
33
layout: "nsxt"
44
page_title: "NSXT: ns_groups"
55
description: A networking and security groups data source. This data source builds "display name to id" map representation of the whole table.
@@ -13,7 +13,7 @@ time at scale, compared to multiple instances of `nsxt_ns_group` data source.
1313
## Example Usage
1414

1515
```hcl
16-
data "nsxt_ns_group" "map" {
16+
data "nsxt_ns_groups" "map" {
1717
}
1818
1919
resource "nsxt_firewall_section" "s1" {

Diff for: website/docs/d/ns_services.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
subcategory: "Manager"
2+
subcategory: "Beta"
33
layout: "nsxt"
44
page_title: "NSXT: ns_services"
55
description: A networking and security services data source. This data source builds "display name to id" map representation of the whole table.
@@ -13,7 +13,7 @@ time at scale, compared to multiple instances of `nsxt_ns_service` data source.
1313
## Example Usage
1414

1515
```hcl
16-
data "nsxt_ns_service" "map" {
16+
data "nsxt_ns_services" "map" {
1717
}
1818
1919
resource "nsxt_firewall_section" "s1" {

Diff for: website/docs/d/policy_lb_service.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
subcategory: "Policy - Load Balancer"
2+
subcategory: "Beta"
33
layout: "nsxt"
44
page_title: "NSXT: policy_lb_service"
55
description: Policy Load Balancer Service data source.

0 commit comments

Comments
 (0)