diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f722c6db..bb53a06e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog + +## 3.33.0 (August 02, 2022) + +BUG FIXES: + +* Fix "error invalid configuration" error introduced in v3.32.0 release; includes unit tests to verify fix. [#1234](https://github.com/okta/terraform-provider-okta/pull/1234). Thanks, [@ericnorris](https://github.com/ericnorris)! + ## 3.32.0 (July 29, 2022) NEW - RESOURCES, DATA SOURCES, PROPERTIES, ATTRIBUTES, ENV VARS: diff --git a/okta/config.go b/okta/config.go index 819d92f47..3be51e017 100644 --- a/okta/config.go +++ b/okta/config.go @@ -111,7 +111,7 @@ func (c *Config) loadAndValidate(ctx context.Context) error { okta.WithRateLimitMaxBackOff(int64(c.maxWait)), okta.WithRequestTimeout(int64(c.requestTimeout)), okta.WithRateLimitMaxRetries(int32(c.retryCount)), - okta.WithUserAgentExtra("okta-terraform/3.32.0"), + okta.WithUserAgentExtra("okta-terraform/3.33.0"), } switch {