We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terraform v1.8.0 on darwin_amd64 provider registry.terraform.io/hashicorp/azuread v2.48.0 provider registry.terraform.io/hashicorp/azurerm v3.99.0 provider registry.terraform.io/hashicorp/http v3.4.2 provider registry.terraform.io/hashicorp/random v3.6.1
Terraform v1.8.0 on darwin_amd64
data "http" "public_ip_proxy" { url = "https://ipv4.icanhazip.com" request_timeout_ms = 120000 }
Terraform uses configured timeout when connecting to the URL
Terraform times out after 30 sec.
terraform apply
High
No response
My (somehow) complex config is taking 38 seconds to run terraform apply when the timeout is configured to 20 minutes.
The text was updated successfully, but these errors were encountered:
I have the same issue
Terraform v1.9.2 on linux_amd64 + provider registry.terraform.io/hashicorp/aws v5.57.0 + provider registry.terraform.io/hashicorp/http v3.4.3 + provider registry.terraform.io/hashicorp/tls v4.0.5 + provider registry.terraform.io/kreuzwerker/docker v3.0.2
check "app_health" { data "http" "app" { url = "${local.app_url}/health" insecure = true request_timeout_ms = 20 * 1000 } assert { condition = data.http.app.status_code == 200 error_message = "${data.http.app.url} returned an unhealthy status code" } }
Sorry, something went wrong.
No branches or pull requests
Terraform CLI and Provider Versions
Terraform Configuration
Expected Behavior
Terraform uses configured timeout when connecting to the URL
Actual Behavior
Terraform times out after 30 sec.
Steps to Reproduce
terraform apply
How much impact is this issue causing?
High
Logs
No response
Additional Information
My (somehow) complex config is taking 38 seconds to run
terraform apply
when the timeout is configured to 20 minutes.Code of Conduct
The text was updated successfully, but these errors were encountered: