Skip to content

Commit

Permalink
fix: Fixed Application Segment health_check_type attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
willguibr committed Oct 30, 2024
1 parent 761a2a8 commit a597b5c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

### Bug Fixes
- [PR #499](https://github.com/zscaler/terraform-provider-zpa/pull/499) - Fixed `zpa_application_segment_pra` import function and normalization of computed attributes.
- [PR #499](https://github.com/zscaler/terraform-provider-zpa/pull/499) - Fixed drift with attribute `health)check_type` in the resources `zpa_application_segment`, `zpa_application_segment_pra`, `zpa_application_segment_inspection` and `zpa_application_segment_browser_access`

### Enhancements
- [PR #499](https://github.com/zscaler/terraform-provider-zpa/pull/499) - Added new `zpa_application_segment` attribute `inspect_traffic_with_zia`
Expand Down
1 change: 1 addition & 0 deletions docs/guides/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Track all ZPA Terraform provider's releases. New resources, features, and bug fi

### Bug Fixes
- [PR #499](https://github.com/zscaler/terraform-provider-zpa/pull/499) - Fixed `zpa_application_segment_pra` import function and normalization of computed attributes.
- [PR #499](https://github.com/zscaler/terraform-provider-zpa/pull/499) - Fixed drift with attribute `health)check_type` in the resources `zpa_application_segment`, `zpa_application_segment_pra`, `zpa_application_segment_inspection` and `zpa_application_segment_browser_access`

### Enhancements
- [PR #499](https://github.com/zscaler/terraform-provider-zpa/pull/499) - Added new `zpa_application_segment` attribute `inspect_traffic_with_zia`
Expand Down
2 changes: 1 addition & 1 deletion zpa/resource_zpa_application_segment.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func resourceApplicationSegment() *schema.Resource {
"health_check_type": {
Type: schema.TypeString,
Optional: true,
Default: "DEFAULT",
Default: "NONE",
ValidateFunc: validation.StringInSlice([]string{
"DEFAULT",
"NONE",
Expand Down
2 changes: 1 addition & 1 deletion zpa/resource_zpa_application_segment_browser_access.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func resourceApplicationSegmentBrowserAccess() *schema.Resource {
"health_check_type": {
Type: schema.TypeString,
Optional: true,
Default: "DEFAULT",
Default: "NONE",
ValidateFunc: validation.StringInSlice([]string{
"DEFAULT",
"NONE",
Expand Down
2 changes: 1 addition & 1 deletion zpa/resource_zpa_application_segment_inspection.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func resourceApplicationSegmentInspection() *schema.Resource {
"health_check_type": {
Type: schema.TypeString,
Optional: true,
Default: "DEFAULT",
Default: "NONE",
ValidateFunc: validation.StringInSlice([]string{
"DEFAULT",
"NONE",
Expand Down
2 changes: 1 addition & 1 deletion zpa/resource_zpa_application_segment_pra.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ func resourceApplicationSegmentPRA() *schema.Resource {
"health_check_type": {
Type: schema.TypeString,
Optional: true,
Default: "DEFAULT",
Default: "NONE",
ValidateFunc: validation.StringInSlice([]string{
"DEFAULT",
"NONE",
Expand Down

0 comments on commit a597b5c

Please sign in to comment.