Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Fixed authentication environment variable zpa_cloud #380

Merged
merged 2 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Changelog

## 3.0.3 (October, xx 2023)
## 3.0.3 (October, 27 2023)

### Notes

- Release date: **(October, xx 2023)**
- Release date: **(October, 27 2023)**
- Supported Terraform version: **v1.x**

### Fixes

- [PR #375](https://github.com/zscaler/terraform-provider-zpa/pull/375) - Fixed drift issues in ``zpa_application_segment_pra`` and ``zpa_application_segment_inspection`` when setting up ``apps_config`` options.
- [PR #375](https://github.com/zscaler/terraform-provider-zpa/pull/375) - Upgrade to [Zscaler-SDK-GO v2.1.3](https://github.com/zscaler/zscaler-sdk-go/releases/tag/v2.1.3). The upgrade allows searches for resources in which the name include 1 or more spaces.

- [PR #380](https://github.com/zscaler/terraform-provider-zpa/pull/380) - Fixed provider authentication to accept `ZPA_CLOUD` via environment variables.

## 3.0.2 (September, 30 2023)

Expand Down
5 changes: 3 additions & 2 deletions docs/guides/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@ Track all ZPA Terraform provider's releases. New resources, features, and bug fi

---

## 3.0.3 (October, xx 2023)
## 3.0.3 (October, 27 2023)

### Notes

- Release date: **(October, xx 2023)**
- Release date: **(October, 27 2023)**
- Supported Terraform version: **v1.x**

### Fixes

- [PR #375](https://github.com/zscaler/terraform-provider-zpa/pull/375) - Fixed drift issues in ``zpa_application_segment_pra`` and ``zpa_application_segment_inspection`` when setting up ``apps_config`` options.
- [PR #375](https://github.com/zscaler/terraform-provider-zpa/pull/375) - Upgrade to [Zscaler-SDK-GO v2.1.3](https://github.com/zscaler/zscaler-sdk-go/releases/tag/v2.1.3). The upgrade allows searches for resources in which the name include 1 or more spaces.
- [PR #380](https://github.com/zscaler/terraform-provider-zpa/pull/380) - Fixed provider authentication to accept `ZPA_CLOUD` via environment variables.

## 3.0.2 (September, 30 2023)

Expand Down
1 change: 1 addition & 0 deletions zpa/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ func ZPAProvider() *schema.Provider {
DefaultFunc: schema.EnvDefaultFunc("ZPA_CUSTOMER_ID", nil),
Description: "zpa customer id",
},

"zpa_cloud": {
Type: schema.TypeString,
Optional: true,
Expand Down
2 changes: 1 addition & 1 deletion zpa/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package zpa

// ProviderVersion is set at build-time in the release process
var ProviderVersion = "3.0.0"
var ProviderVersion = "3.0.3"
Loading