Skip to content

Releases: zscaler/terraform-provider-zia

v2.2.3

20 Oct 18:53
v2.2.3
925e586

Choose a tag to compare

2.2.3 (October, 20 2022)

Notes

  • Release date: (October, 20 2022)
  • Supported Terraform version: v1.x

Enhancements

  • PR #137 Added Customizable Timeouts to zia_activation_status resource.
  • PR #138 Added acceptance test to zia_activation_status data source.

Fixes

  • PR #134 Update to zscaler-sdk-go v0.1.1
  • PR #135 Update to zscaler-sdk-go v0.1.2
  • PR #135 Added missing parameter comment to zia_traffic_forwarding_static_ips
  • PR #136 Updated Documentation for zia_activation_status resource and data source.

v2.2.2

26 Sep 04:47
v2.2.2
f6c8394

Choose a tag to compare

2.2.2 (September, 25 2022)

Notes

  • Release date: (September, 25 2022)
  • Supported Terraform version: v1.x

Bug Fixes

  • PR #130 Fix Import Resource By ID

v2.2.1

21 Sep 21:22
v2.2.1
a224489

Choose a tag to compare

2.2.1 (September, 21 2022)

Notes

  • Release date: (September, 21 2022)
  • Supported Terraform version: v1.x

Bug Fixes

Fix: PR[#127 ] zia_user_management group attribute to hold a list of group IDs as a typeList instead of typeSet.

v2.2.0

19 Aug 19:03
v2.2.0
e714261

Choose a tag to compare

2.2.0 (August, 19 2022)

Notes

  • Release date: (August 19 2022)
  • Supported Terraform version: v1.x

Enhancements

  • PR #113 Integrated newly created Zscaler GO SDK. Models are now centralized in the repository zscaler-sdk-go

Fixes

  • Terraform import failing for zia_traffic_forwarding_static_ip resource. Search by IP criteria was not implemented.

v2.1.2

19 Jul 22:35
v2.1.2
1079d3b

Choose a tag to compare

2.1.2 (July, 19 2022)

Notes

  • Supported Terraform version: v1.x

Ehancements

  • PR #110 Added Terraform UserAgent for Backend API tracking

Fixes

v2.1.1

07 Jun 23:06
v2.1.1
853bce5

Choose a tag to compare

2.1.1 (June, 7 2022)

Notes

  • Supported Terraform version: v1.x

New Features

  • zia_auth_settings_urls Added new resource to support adding and removing URLs to ZIA exemption list.
  • zia_security_policy_settings Added new resource to support adding and removing whitelisted and blacklisted URLs to the Advanced Threat Protection feature in ZIA.
    • Important: API limits apply based on the type of URLs being added. The ZIA API today allows: for 25K URL into the denylist and 255 into the allowlist. Refer to the API documentation Here

v2.1.0

07 Jun 07:53
v2.1.0
24eb96a

Choose a tag to compare

2.1.0 (June, 7 2022)

Notes

  • Supported Terraform version: v1.x

New Features

  • zia_auth_settings_urls Added new resource to support adding and removing URLs to ZIA exemption list.
  • zia_security_policy_settings Added new resource to support adding and removing whitelisted and blacklisted URLs to the Advanced Threat Protection feature in ZIA.

v2.0.3

18 May 06:35
v2.0.3
28928a1

Choose a tag to compare

2.0.3 (May, 18 2022)

Notes

  • Supported Terraform version: v1.x

Announcement

The Terraform Provider for Zscaler Internet Access (ZIA) is now officially hosted under Zscaler's GitHub account and published in the Terraform Registry. For more details, visit the Zscaler Community Article Here
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 {
    zia = {
      source = "zscaler/zia"
      version = "2.0.3"
    }
  }
}
provider "zia" {}

New Data Sources

  • zia_dlp_engines - PR#91 🔧

v2.0.2

18 May 06:26
v2.0.2
28928a1

Choose a tag to compare

2.0.2 (May, 17 2022)

Notes

  • Supported Terraform version: v1.x

Announcement

The Terraform Provider for Zscaler Internet Access (ZIA) 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 {
    zia = {
      source = "zscaler/zia"
      version = "2.0.3"
    }
  }
}
provider "zia" {}

New Data Sources

  • zia_dlp_engines - PR#91 🔧

v2.0.1

18 May 06:25
v2.0.1
28928a1

Choose a tag to compare

2.0.1 (April 19, 2022)

Bug Fixes

Several schema type, expand and flattening function fixes were implemented to prevent undesired plan refresh updates and further provider optimization.

  • zia_dlp_dictionaries - PR#61 🔧
  • zia_dlp_web_rules - PR#62 🔧
  • zia_firewall_filtering_rule - Added schema validation order parameter to ensure value is at least 1. PR#63 🔧
  • zia_url_filtering_rules - PR#66 🔧
  • zia_admin_users - PR#67 🔧
  • zia_user_management - PR#67 🔧

Enhancements

  1. Updated ZIA API client to validate the corresponding Zscaler cloud name. The previous environment variable ZIA_BASE_URL was replaced with ZIA_CLOUD. PR#58

  2. The provider now validates the proper Zscaler cloud name. PR#58 For instructions on how to find your Zscaler cloud name, refer to the following help article Here

  3. Added and fixed multiple acceptance tests to easily and routinely verify that Terraform Plugins produce the expected outcome

  4. Updated GitHub Actions CI to include both build and acceptance test workflow

  5. Added new optimized acceptance tests - PR#71 🔧