mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-15 13:00:32 -05:00
16 lines
204 B
HCL
16 lines
204 B
HCL
data "http" "example1" {
|
|
}
|
|
|
|
data "http" "example2" {
|
|
url = "http://example.com/"
|
|
|
|
request_headers = {
|
|
"Accept" = "application/json"
|
|
}
|
|
|
|
count = 5
|
|
depends_on = [
|
|
data.http.example1,
|
|
]
|
|
}
|