terraform-provider-terracurl
terraform-provider-terracurl copied to clipboard
A flexible Terraform provider for making API calls
Hi! Recently I have been trying to bootstrap some Azure webapps, part of this work includes uploading a ZIP file using the Kudu API via a PUT request. Problem I...
The current pull request is just to add support for http proxies using the standard environment variables (HTTP_PROXY, HTTPS_PROXY and NO_PROXY).
### Terraform Version Terraform v1.7.0 Terracurl does not provide an option to override the Host using Host header, similar to `curl`. ### Terraform Configuration Files ```hcl data "terracurl_request" "home" {...
Please document the defaults for max_retry and destroy_max_retry. I believe from the source they are both zero, which means no retries by default. I expected to find this in the...
### Terraform Version ``` $ terraform -v Terraform v1.5.7 on darwin_arm64 ``` When I'm using the `TF_LOG=debug` with the terracurl provider I can not see the exact urls + data...
**Describe the issue** We are encountering an issue when using the terracurl module to interact with our API hosted on GCP Cloud Run. Our Terraform module dynamically generates a GCP...
Due to CVE-2024-24790 the used go version has to be bumped to 1.22.6
Hi 👋 any chance that you could publish this provider to the OpenTofu registry https://github.com/opentofu/registry ? It would be convenient to have it available there now that OpenTofu cannot fetch...
If a `destroy_url` is not specified, this provider defaults to `http://example.com/` -- this behavior is not documented, and example.com no longer allows DELETE requests (can't blame them) ....
Hi, Would it be possible to add support for multipart/form-data ? `curl [URL] -F name=John -F [email protected]`