Skip to content

Commit cdd286f

Browse files
James FarrellJames Farrell
authored andcommitted
updated changelog
1 parent 5507984 commit cdd286f

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
## 2.0.0 (March 2, 2023)
2+
ENHANCEMENTS
3+
4+
* Upgraded to Terraform SDK 2.24.1. Users of Pulsar will need to make minor changes in their resource files, see below.
5+
6+
INCOMPATIBILITIES WITH PREVIOUS VERSIONS
7+
8+
* The `ns1_application` resource attributes `config`, `default_config` and `blended_metric_weights` are now blocks, with only one item permitted. This is due to an SDK 2.x restriction on nested structures. Existing resource files will need to be edited to remove the equals sign in the declarations of the affected stanzas, for example:
9+
10+
```
11+
resource "ns1_application" "it" {
12+
name = "my_application"
13+
browser_wait_millis = 123
14+
jobs_per_transaction = 100
15+
default_config {
16+
http = true
17+
https = false
18+
request_timeout_millis = 100
19+
job_timeout_millis = 100
20+
static_values = true
21+
}
22+
}
23+
```
24+
25+
instead of the previous syntax:
26+
```
27+
default_config = {
28+
```
29+
30+
* Added `networks` resource it provides details about NS1 Networks. Use this if you would simply like to read information from NS1 into your configurations, for example:
31+
32+
```hcl
33+
# Get details about NS1 Networks.
34+
data "ns1_networks" "example" {
35+
}
36+
```
37+
138
## 2.0.0-pre1 (January 18, 2023)
239
ENHANCEMENTS
340

0 commit comments

Comments
 (0)