Releases: ns1-terraform/terraform-provider-ns1
Releases · ns1-terraform/terraform-provider-ns1
Release list
v2.0.0
2.0.0 (March 3, 2023)
ENHANCEMENTS
- Upgraded to Terraform SDK 2.24.1. Users of Pulsar will need to make minor changes in their resource files, see below.
INCOMPATIBILITIES WITH PREVIOUS VERSIONS
- The
ns1_applicationresource attributesconfig,default_configandblended_metric_weightsare 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:
resource "ns1_application" "it" {
name = "my_application"
browser_wait_millis = 123
jobs_per_transaction = 100
default_config {
http = true
https = false
request_timeout_millis = 100
job_timeout_millis = 100
static_values = true
}
}instead of the previous syntax:
default_config = {
- Added
networksresource it provides details about NS1 Networks. Use this if you would simply like to read information from NS1 into your configurations, for example:
# Get details about NS1 Networks.
data "ns1_networks" "example" {
}v2.0.0-pre1
2.0.0-pre1 (January 18, 2023)
ENHANCEMENTS
- Upgraded to Terraform SDK 2.24.1. Users of Pulsar will need to make minor changes in their resource files, see below.
INCOMPATIBILITIES WITH PREVIOUS VERSIONS
- The
ns1_applicationresource attributesconfig,default_configandblended_metric_weightsare 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.
v1.13.4
1.13.4 (January 10, 2023)
ENHANCEMENTS
- User-agent string can now be customized in the resource file.
- Upgraded to ns1-go 2.7.3
BUG FIXES
- Fixed permissions problems with DNS record allow/deny lists (issues 196 and 197)
- Fixed a few cases where objects deleted from infrastructure but still in state were not being recognized correctly.
- Fixed error in HTTP response debug logging
- Datasource and datafeed schema fixes
v1.13.4-pre1
1.13.4-pre1 (December 22, 2022)
BUG FIXES
- fixed permissions problems with DNS record allow/deny lists (issues 196 and 197)
v1.13.3
1.13.3 (December 21, 2022)
ENHANCEMENTS
- The Hashicorp go-retryablehttp package is now used by default to retry requests when encountering 502/503 errors or connection errors.
- Upgraded to Terraform SDK 1.17.2
- Upgraded to ns1-go 2.7.2
BUG FIXES
- Fix recognition of datafeed "not found" errors.
- Fixed CAA record answers to allow answers with spaces after a domain (issue 238)
- HTTP 50x and similar errors are now properly displayed.
- API keys can now be imported.
- Documentation corrections and updates.
- Fixed rate-limit divide-by-zero error.
v1.13.2
1.13.2 (December 21, 2022)
ENHANCEMENTS
- The Hashicorp go-retryablehttp package is now used by default to retry requests when encountering 502/503 errors or connection errors.
- Upgraded to Terraform SDK 1.17.2
- Upgraded to ns1-go 2.7.2
BUG FIXES
- Fix recognition of datafeed "not found" errors.
- Fixed CAA record answers to allow answers with spaces after a domain (issue 238)
- HTTP 50x and similar errors are now properly displayed.
- API keys can now be imported.
- Documentation corrections and updates.
v1.13.2-pre4
1.13.2-pre4 (prerelease) (December 14, 2022)
BUG FIXES
- Fixed CAA record answers to allow answers with spaces after a domain (issue 238)
- Upgrade to ns1-go v2.7.2 to get messages from HTTP 50x errors properly displayed.
- Upgraded to Terraform SDK 1.17.2
- Misc documentation fixes.
v1.13.2-pre2
ENHANCEMENTS
- The Hashicorp go-retryablehttp package is now used by default to retry requests when encountering 502/503 errors or connection errors.
v1.13.2-pre1
Upgrade to ns1-go v2.7.1 to get fix for rate-limit divide-by-zero error.
v1.13.1
ENHANCEMENTS
- HTTP debug logging now includes request/response times and response data
BUG FIXES
- Update instead of delete/recreate when changing link attribute of DNS record
- Region names in DNS record metadata now sorted to avoid false differences
- Permission flag change detection fixes issue 237
- Team object creation fix
- Additional acceptance test fixes
- Fix documentation typo