mirror of
https://github.com/hashicorp/packer.git
synced 2026-03-22 18:33:59 -04:00
52 lines
1.6 KiB
Text
52 lines
1.6 KiB
Text
---
|
|
description: |
|
|
The `http` data source makes an HTTP `GET` request to the specified URL and exports information about the response.
|
|
page_title: http data source reference
|
|
---
|
|
|
|
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
|
|
> [!IMPORTANT]
|
|
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
|
|
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
|
|
|
|
<BadgesHeader>
|
|
<PluginBadge type="official" />
|
|
<PluginBadge type="hcp_packer_ready" />
|
|
</BadgesHeader>
|
|
|
|
# `http`
|
|
|
|
The `http` data source makes an HTTP `GET` request to the specified URL and exports information about the response.
|
|
|
|
|
|
## Basic Example
|
|
|
|
```hcl
|
|
data "http" "example" {
|
|
url = "https://checkpoint-api.hashicorp.com/v1/check/terraform"
|
|
|
|
# Optional request headers
|
|
request_headers = {
|
|
Accept = "application/json"
|
|
}
|
|
}
|
|
```
|
|
|
|
## Configuration Reference
|
|
|
|
Configuration options are organized below into two categories: required and
|
|
optional. Within each category, the available options are alphabetized and
|
|
described.
|
|
|
|
### Required:
|
|
|
|
@include 'datasource/http/Config-required.mdx'
|
|
|
|
### Not Required:
|
|
@include 'datasource/http/Config-not-required.mdx'
|
|
|
|
## Datasource outputs
|
|
|
|
The outputs for this datasource are as follows:
|
|
|
|
@include 'datasource/http/DatasourceOutput.mdx'
|