Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 647 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 647 Bytes

Proxy Server with Terraform

This Terraform script spins up an EC2 instance with tinyproxy on Amazon AWS.

Run the following commands: curl ifconfig.co # 190.161.233.196 terraform apply -var "ip_address=190.161.233.196" # Type 'yes' to confirm

The script outputs:

proxy_ip_address = 54.201.143.110 proxy_port = 8888

Make sure the proxy works:

curl -x 54.201.143.110:8888 ifconfig.co # 54.201.143.110

Here is a blog post with a step by step guide explaining how the script works.