Skip to content

Commit

Permalink
v1.3.7 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ajayaraman committed Dec 11, 2020
1 parent db4b031 commit 8397e9e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.3.7 (December 8, 2020)
* Fix: http client overrides default transport and no longer supports environment proxy settings. (#46)

## 1.3.6 (December 8, 2020)
* Fix: Pass HEC token as input with http event collector resource

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ Build the provider: `make build`
* For importing existing resources use `terraform import`
* To remove all terraform managed resources use `terraform destroy`

**NOTE:** When developing or testing with terraform `>= 0.13` you must replace the provider location from remote (registry.terraform.io) to local build.

**NOTE:** When developing and testing local provider builds, if terraform version `>= 0.13` you would have to replace the provider binaries in the `.terraform` folder with your local build.
Follow guidelines: https://github.com/hashicorp/terraform/blob/master/website/upgrade-guides/0-13.html.markdown

### Contributions
Expand Down
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ func NewSplunkdHTTPClient(timeout time.Duration, skipValidateTLS bool) *http.Cli
return &http.Client{
Timeout: timeout,
Transport: &http.Transport{
Proxy: http.DefaultTransport.(*http.Transport).Proxy,
Proxy: http.DefaultTransport.(*http.Transport).Proxy,
TLSClientConfig: &tls.Config{InsecureSkipVerify: skipValidateTLS},
},
}
Expand Down

0 comments on commit 8397e9e

Please sign in to comment.