Skip to content

Releases: zscaler/terraform-provider-zpa

v2.3.2

02 Sep 16:36
v2.3.2
0d716de
Compare
Choose a tag to compare

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

31 Aug 00:08
v2.3.1
589d9c4
Compare
Choose a tag to compare

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

17 Aug 21:36
v2.3.0
4d8edea
Compare
Choose a tag to compare

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

19 Jul 21:39
v2.2.2
be6b832
Compare
Choose a tag to compare

2.2.2 (July, 19 2022)

Notes

  • Supported Terraform version: v1.x

Enhancements

  • PR #159 Added Terraform UserAgent for Backend API tracking

v2.2.1

08 Jul 03:25
v2.2.1
8ad623a
Compare
Choose a tag to compare

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

01 Jul 00:38
v2.2.0
4660094
Compare
Choose a tag to compare

2.2.0 (June, 30 2022)

Notes

  • Supported Terraform version: v1.x

New Features

  1. 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_ACCESSoption for RDP and SSH via the app_types parameter. PR #133
  1. 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 for HTTP and HTTPS via the app_types parameter. PR #135
  1. 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

  1. Added release notes guide to documentation PR #140
  2. Fixed documentation misspellings

v2.1.5

18 May 21:59
v2.1.5
aa48395
Compare
Choose a tag to compare

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 #123
  • zpa_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 on tcp_port_ranges, udp_port_ranges and tcp_port_range, udp_port_range Issue #103

v2.1.4

18 May 21:43
v2.1.4
b0c1feb
Compare
Choose a tag to compare

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

18 May 07:39
v2.1.3
1fd1616
Compare
Choose a tag to compare

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

18 May 23:41
v2.0.5
7198fda
Compare
Choose a tag to compare

2.0.5 (December 20, 2021)

Enhancement

  • The provider now supports the ability to import policy access resources via its name and/or id property to support easier migration of existing ZPA resources via terraform import command.
    The following policy access resources are supported:

    • resource_zpa_policy_access_rule - PR#51] 🚀
    • resource_zpa_policy_access_timeout_rule - PR#51 🚀
    • resource_zpa_policy_access_forwarding_rule - PR#51 🚀
  • 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

Bug Fixes

  • Fixed pagination issues with all resources where only the default pagesize was being returned. PR#52 🔧
  • Fixed issue where Terraform showed that resources had been modified even though nothing had been changed in the upstream resources.PR#54 🔧