Skip to content

Commit 2f79598

Browse files
committed
TOP-126 running terraform behind a proxy
1 parent cb340f2 commit 2f79598

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

website/docs/guides/troubleshooting.html.markdown

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,19 @@ Error asking for user input: 1 error(s) occurred:
3232

3333
You are likely using a version of the OCI Terraform Provider that is not compatible with the Terraform binary you have
3434
installed. For OCI Provider versions v3.x.x and above, a minimum Terraform version of v.0.10.1 is required.
35+
36+
37+
### Dial tcp i/o timeout when connecting via proxy
38+
39+
_If the Terraform CLI gives an error message like:_
40+
```
41+
* provider.oci: ... dial tcp 134.70.16.0:443: i/o timeout
42+
43+
```
44+
45+
Then you may not have properly configured your proxy settings. The OCI terraform provider does support `http_proxy`, `https_proxy` and `no_proxy` variables where the inclusion or exclusion lists can be defined as follows:
46+
```
47+
export http_proxy=http://www.your-proxy.com:80/
48+
export https_proxy=http://www.your-proxy.com:80/
49+
export no_proxy=localhost,127.0.0.1
50+
```

0 commit comments

Comments
 (0)