Skip to content

Commit bb7802b

Browse files
authored
fix: Fixed Static IP resource (#499)
1 parent 64eae7e commit bb7802b

File tree

5 files changed

+597
-50
lines changed

5 files changed

+597
-50
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 4.6.2 (November, 20 2025)
4+
5+
### Notes
6+
7+
- Release date: **(November, 20 2025)**
8+
- Supported Terraform version: **v1.x**
9+
10+
### Bug Fixes
11+
12+
- [PR #499](https://github.com/zscaler/terraform-provider-zia/pull/499) - Fixed `zia_traffic_forwarding_static_ip` resource to auto-determine latitude and longitude coordinates when `geo_override = true` but coordinates are not explicitly provided, eliminating "Missing geo Coordinates" API error and improving user experience.
13+
314
## 4.6.1 (November, 20 2025)
415

516
### Notes
@@ -9,7 +20,7 @@
920

1021
### Bug Fixes
1122

12-
- [PR #498](https://github.com/zscaler/terraform-provider-zia/pull/498) - Fixed `zia_url_categories` resource READ function for better state refresh and rate limiting conservation. Also fixed issue with category_type `TLD_CATEGORY` not being set correctly in the state during creation.
23+
- [PR #498](https://github.com/zscaler/terraform-provider-zia/pull/498) - Fixed `zia_url_categories` resource READ function to use bulk `GetAll()` API call with fallback mechanism to prevent "Provider produced inconsistent result" error during resource creation while maintaining optimal performance for terraform refresh operations.
1324

1425
## 4.6.0 (November, 19 2025)
1526

GNUmakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,14 +196,14 @@ test\:integration\:zscalertwo:
196196
build13: GOOS=$(shell go env GOOS)
197197
build13: GOARCH=$(shell go env GOARCH)
198198
ifeq ($(OS),Windows_NT) # is Windows_NT on XP, 2000, 7, Vista, 10...
199-
build13: DESTINATION=$(APPDATA)/terraform.d/plugins/$(ZIA_PROVIDER_NAMESPACE)/4.6.1/$(GOOS)_$(GOARCH)
199+
build13: DESTINATION=$(APPDATA)/terraform.d/plugins/$(ZIA_PROVIDER_NAMESPACE)/4.6.2/$(GOOS)_$(GOARCH)
200200
else
201-
build13: DESTINATION=$(HOME)/.terraform.d/plugins/$(ZIA_PROVIDER_NAMESPACE)/4.6.1/$(GOOS)_$(GOARCH)
201+
build13: DESTINATION=$(HOME)/.terraform.d/plugins/$(ZIA_PROVIDER_NAMESPACE)/4.6.2/$(GOOS)_$(GOARCH)
202202
endif
203203
build13: fmtcheck
204204
@echo "==> Installing plugin to $(DESTINATION)"
205205
@mkdir -p $(DESTINATION)
206-
go build -o $(DESTINATION)/terraform-provider-zia_v4.6.1
206+
go build -o $(DESTINATION)/terraform-provider-zia_v4.6.2
207207

208208
coverage: test
209209
@echo "✓ Opening coverage for unit tests ..."

docs/guides/release-notes.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,21 @@ description: |-
1212
Track all ZIA Terraform provider's releases. New resources, features, and bug fixes will be tracked here.
1313

1414
---
15-
``Last updated: v4.6.1``
15+
``Last updated: v4.6.2``
1616

1717
---
1818

19+
## 4.6.2 (November, 20 2025)
20+
21+
### Notes
22+
23+
- Release date: **(November, 20 2025)**
24+
- Supported Terraform version: **v1.x**
25+
26+
### Bug Fixes
27+
28+
- [PR #499](https://github.com/zscaler/terraform-provider-zia/pull/499) - Fixed `zia_traffic_forwarding_static_ip` resource to auto-determine latitude and longitude coordinates when `geo_override = true` but coordinates are not explicitly provided, eliminating "Missing geo Coordinates" API error and improving user experience.
29+
1930
## 4.6.1 (November, 20 2025)
2031

2132
### Notes
@@ -25,7 +36,7 @@ Track all ZIA Terraform provider's releases. New resources, features, and bug fi
2536

2637
### Bug Fixes
2738

28-
- [PR #498](https://github.com/zscaler/terraform-provider-zia/pull/498) - Fixed `zia_url_categories` resource READ function for better state refresh and rate limiting conservation. Also fixed issue with category_type `TLD_CATEGORY` not being set correctly in the state during creation.
39+
- [PR #498](https://github.com/zscaler/terraform-provider-zia/pull/498) - Fixed `zia_url_categories` resource READ function to use bulk `GetAll()` API call with fallback mechanism to prevent "Provider produced inconsistent result" error during resource creation while maintaining optimal performance for terraform refresh operations.
2940

3041
## 4.6.0 (November, 19 2025)
3142

0 commit comments

Comments
 (0)