/proxy-server-with-terraform

Spin up your own proxy server with Tinyproxy and Terraform on Amazon AWS

Primary LanguageHCL

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.