terraform-provider-http icon indicating copy to clipboard operation
terraform-provider-http copied to clipboard

Utility provider for interacting with generic HTTP servers as part of a Terraform configuration.

Results 55 terraform-provider-http issues
Sort by recently updated
recently updated
newest added

Hi there, Do you have some plans to add the possibility to file upload like HTTP file upload via `Content-Type: multipart/form-data` or the same functionality `curl --request PUT --form "image=@./myimage.png"`?...

This PR will let user validate TLS certificate with a provided root CA or choose a `insecure` option with no validation at all. May solves https://github.com/hashicorp/terraform-provider-aws/pull/11426 and have a lot...

documentation
size/L

Hi! The http provider is leaking secrets on error, relevant source here: [if err != nil {](https://github.com/hashicorp/terraform-provider-http/blob/27cd34768f6eb7e88319ff3484c37430b28decfb/internal/provider/data_source.go#L63) It would be ideal to have this dump controlled via the log level....

The "standard library" Terraform Providers should implement nascent provider development tooling to encourage consistency, foster automation where possible, and discover bugs/enhancements to that tooling. To that end, this provider's CHANGELOG...

documentation
provider

The "standard library" Terraform Providers should implement nascent provider development tooling to encourage consistency, foster automation where possible, and discover bugs/enhancements to that tooling. To that end, this provider's documentation...

documentation
provider

I'm using data "http" "someyaml" {} to fetch official crds/yamls for deploying to kubernetes. Some of these yamls send a 302 redirect that the http client is not following. It...

This makes it easier to see what the problem is. cla: trivial

size/XS

We are using the http provider in several places in our code. When one of our http resources returns an error response like 401 or 404 it can be hard...

I'd like to avoid writing some headers (eg; "Authorization") to Terraform state... Not sure what you think about the config name? The implementation is a little... unusual - it doesn't...

Hi there, the issue here is with the http provider as the moment it tries to fetch data from the given HTTPs URL, it ends up on TLS handshake timeout...