Skip to content

Commit

Permalink
fix(terraform): update terraform http ( 3.4.3 → 3.4.4 ) (#845)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [http](https://registry.terraform.io/providers/hashicorp/http)
([source](https://togithub.com/hashicorp/terraform-provider-http)) |
required_provider | patch | `3.4.3` -> `3.4.4` |

---

### Release Notes

<details>
<summary>hashicorp/terraform-provider-http (http)</summary>

###
[`v3.4.4`](https://togithub.com/hashicorp/terraform-provider-http/blob/HEAD/CHANGELOG.md#344-July-31-2024)

[Compare
Source](https://togithub.com/hashicorp/terraform-provider-http/compare/v3.4.3...v3.4.4)

NOTES:

- data-source/http: Previous versions of this provider ignored any
`Host` headers specified in the `request_headers` attribute when setting
the HTTP request. Any specified `Host` request header will now be set on
the HTTP request.

For example, in the following configuration:

```hcl
data "http" "example" {
  url      = "https://www.example.com"
  request_headers = {
    Host = "www.differentexample.com"
  }
}
```

The HTTP request URL host is still `www.example.com` but the HTTP
request `Host` header will now be `www.differentexample.com` instead of
`www.example.com`.

([#&#8203;440](https://togithub.com/hashicorp/terraform-provider-http/issues/440))

BUG FIXES:

- data-source/http: Allow `Host` header in `request_headers` to be set
on HTTP request
([#&#8203;440](https://togithub.com/hashicorp/terraform-provider-http/issues/440))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xNS4wIiwidXBkYXRlZEluVmVyIjoiMzguMTUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUvdGVycmFmb3JtIiwidHlwZS9wYXRjaCJdfQ==-->

Co-authored-by: kireque-bot[bot] <143391978+kireque-bot[bot]@users.noreply.github.com>
  • Loading branch information
kireque-bot[bot] authored Aug 1, 2024
1 parent 802e0ef commit 8f48c42
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 50 deletions.
48 changes: 24 additions & 24 deletions infrastructure/terraform/cloudflare/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion infrastructure/terraform/cloudflare/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ terraform {
}
http = {
source = "hashicorp/http"
version = "3.4.3"
version = "3.4.4"
}
}
}
Expand Down
48 changes: 24 additions & 24 deletions infrastructure/terraform/unifi/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion infrastructure/terraform/unifi/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform {
}
http = {
source = "hashicorp/http"
version = "3.4.3"
version = "3.4.4"
}
}
}
Expand Down

0 comments on commit 8f48c42

Please sign in to comment.