Ask questionsTerraform provider downloads fail with TLS handshake timeout
0.10.0
We are running terraform as part of a Jenkins CI system. Basically every job builds a docker container containing terraform and then executes a tectonic installer in said container.
Terraform should download the providers and their checksums
` Error installing provider "aws": error fetching checksums: Get https://releases.hashicorp.com/terraform-provider-aws/0.1.4/terraform-provider-aws_0.1.4_SHA256SUMS: net/http: TLS handshake timeout.
Terraform analyses the configuration and state and automatically downloads plugins for the providers used. However, when attempting to download this plugin an unexpected error occured.
This may be caused if for some reason Terraform is unable to reach the plugin repository. The repository may be unreachable if access is blocked by a firewall. `
This happens with several other providers as well.
Please list the steps required to reproduce the issue, for example:
terraform applyI attached to the container running terraform and executed curl: ``root@jenkins-slave-4s7xc-r828q:~# docker exec -it 3e85ee5a4d9b curl -v https://releases.hashicorp.com/terraform-provider-tls/0.1.0/terraform-provider-tls_0.1.0_SHA256SUMS
GET /terraform-provider-tls/0.1.0/terraform-provider-tls_0.1.0_SHA256SUMS HTTP/1.1 User-Agent: curl/7.38.0 Host: releases.hashicorp.com Accept: /
< HTTP/1.1 200 OK <``
So there must be a difference in how curl handles TLS and how terraform does it.
Answer
questions
dgmorales
I'm on Mojave 10.14.5, and I'm getting the same "net/http: TLS handshake timeout" message on init when it tries to access my remote state backend on azurerm. Puzzling as it is, sudoing works, specially because I'm using sudo -E to preserve the environment (to access the ARM_ACCESS_KEY env var I've set on my regular user session).
terraform init
Initializing modules...
Initializing the backend...
Error: Failed to get existing workspaces: Get https://xxxxxxxx.blob.core.windows.net/tfstates?comp=list&prefix=xxxxxx.tfstateenv%3A&restype=container: net/http: TLS handshake timeout
Additionaly, terraform plan works fine without sudo, despite that it also has to access the state.
Related questions