Releases: zscaler/terraform-provider-zpa
v2.3.2
2.3.2 (September, 2 2022)
Notes
- Supported Terraform version: v1.x
Bug Fixes
Fixed authentication issue when specifying zpa_cloud="PRODUCTION"
v2.3.1
2.3.1 (August, 31 2022)
Notes
- Supported Terraform version: v1.x
Bug Fixes
- PR #169 Fixed policy rule order, where the rule order in the UI didn't correspond to the desired order set in HCL. Issue [#166]
- PR #170 Fixed special character encoding, where certain symbols caused Terraform to indicate potential configuration drifts. Issue [#149]
- PR #171 Fixed policy configuration attributes where i.e SCIM_GROUPs were causing drifts without changes have been performed. Issue [#165]
- PR #175 Fixed application segment drifts caused by tcp & udp ports.
- PR #176 Fixed application segment PRA drifts caused by tcp & udp ports.
- PR #177 Fixed application segment Inspection drifts caused by tcp & udp ports.
v2.3.0
2.3.0 (August, 17 2022)
Notes
- Supported Terraform version: v1.x
Enhancements
- PR #161 Integrated newly created Zscaler GO SDK. Models are now centralized in the repository zscaler-sdk-go
v2.2.2
v2.2.1
2.2.1 (July, 7 2022)
Notes
- Supported Terraform version: v1.x
Bug Fixes
- Fix: Fixed authentication mechanism variables for ZPA Beta and GOV
Documentation
- Fixed application segment documentation and examples
v2.2.0
2.2.0 (June, 30 2022)
Notes
- Supported Terraform version: v1.x
New Features
- The provider now supports the following ZPA Privileged Remote Access (PRA) features:
- zpa_application_segment_pra - The resource supports enabling Priviledged Remote Access Application Segment
SECURE_REMOTE_ACCESS
option forRDP
andSSH
via theapp_types
parameter. PR #133
- The provider now supports the following ZPA Inspection features:
- zpa_inspection_custom_controls PR#134
- zpa_inpection_predefined_controls PR#134
- zpa_inspection_all_predefined_controls PR#134
- zpa_inspection_profile PR#134
- zpa_policy_access_inspection_rule PR#134
- zpa_application_segment_inspection - The resource supports enabling
INSPECT
forHTTP
andHTTPS
via theapp_types
parameter. PR #135
- Implemented a new Application Segment resource parameter
select_connector_close_to_app
. The parameter can only be set for TCP based applications. PR #137
Enhancements
-
Added support to
scim_attribute_header
to support policy access SCIM criteria based on SCIM attribute values. Issue #146 / PR #147 -
ZPA Beta Cloud: The provider now supports authentication via environment variables or static credentials to ZPA Beta Cloud. For authentication instructions please refer to the documentation page here PR #136
-
ZPA Gov Cloud: The provider now supports authentication via environment variables or static credentials to ZPA Gov Cloud. For authentication instructions please refer to the documentation page here PR #145
Bug Fixes
- Fix: Fixed update function on zpa_app_server_controller resource to ensure desired state is enforced in the upstream resource. Issue #128
- Fix: Fixed
enabled
parameter on zpa_app_connector_group resource by removing default action from resource schema. Issue #128 - Fix: Fixed Golangci linter and upgraded to golangci-lint-action@v3
Documentation
- Added release notes guide to documentation PR #140
- Fixed documentation misspellings
v2.1.5
2.1.5 (May, 18 2022)
Notes
- Supported Terraform version: v1.x
Announcement
The Terraform Provider for Zscaler Private Access (ZPA) is now officially hosted under Zscaler's GitHub account and published in the Terraform Registry.
Administrators who used previous versions of the provider, and followed instructions to install the binary as a custom provider, must update their provider block as such: For more details, visit the Zscaler Community Article Here
terraform {
required_providers {
zpa = {
source = "zscaler/zpa"
version = "2.1.5"
}
}
}
provider "zpa" {}
Enhancements
- Documentation: Updated documentation to comply with Terraform registry formatting. #125
zpa_posture_profile
Updated search mechanism to support posture profile name search without the Zscaler cloud name. PR #123zpa_trusted_network
Updated search mechanism to support trusted network name search without the Zscaler cloud name. PR #123
BUG Fixes
- Fixed
zpa_application_segment
to support updates ontcp_port_ranges
,udp_port_ranges
andtcp_port_range
,udp_port_range
Issue #103
v2.1.4
2.1.4 (May, 18 2022)
Notes
- Supported Terraform version: v1.x
Announcement
The Terraform Provider for Zscaler Private Access (ZPA) is now officially hosted under Zscaler's GitHub account and published in the Terraform Registry.
Administrators who used previous versions of the provider, and followed instructions to install the binary as a custom provider, must update their provider block as such:
terraform {
required_providers {
zpa = {
source = "zscaler/zpa"
version = "2.1.3"
}
}
}
provider "zpa" {}
v2.1.3
2.1.3 (May, 18 2022)
Notes
- Supported Terraform version: v1.x
Announcement
The Terraform Provider for Zscaler Private Access (ZPA) is now officially hosted under Zscaler's GitHub account and published in the Terraform Registry.
Administrators who used previous versions of the provider, and followed instructions to install the binary as a custom provider, must update their provider block as such:
terraform {
required_providers {
zpa = {
source = "zscaler/zpa"
version = "2.1.3"
}
}
}
provider "zpa" {}
v2.0.5
2.0.5 (December 20, 2021)
Enhancement
-
The provider now supports the ability to import policy access resources via its
name
and/orid
property to support easier migration of existing ZPA resources viaterraform import
command.
The following policy access resources are supported: -
The provider now supports policy access creation to be associated with Cloud Connector Group resource
- resource_zpa_policy_access_rule - PR#54 🚀
-
Added new
client_type
to support access, forward, and timeout policy creation. The following new types have been added:- zpn_client_type_ip_anchoring, zpn_client_type_browser_isolation, zpn_client_type_machine_tunnel and zpn_client_type_edge_connector. PR#57] 🚀
-
Updated the following examples for more accuracy:
- resource_zpa_policy_access_rule
- resource_zpa_app_connector_group