Code Monkey home page Code Monkey logo

tolocal's Introduction

ToLocal

Automates AWS to create a reverse proxy for HTTPS requests from a public DNS record to your service running on localhost:port. for example:

https://api.dev.yourdomain.com -> localhost:4000

Requirements

  • node > v20.0.0
  • terraform > v1.5.7

Installation & Configuration

Git clone

git clone [email protected]:nelsonenzo/tolocal.git

Make tolocal a command

npm link

Configure tolocal using the interactive cli

tolocal config

Bring up the AWS infrastructure

since it's running terraform under the hood, apply like you do terraform

tolocal apply

Tunnel your local service

This will open the SSH tunnel

tolocal up

How does it do it?

tolocal is an npm cli that wraps terraform.

The terraform creates:

  • an ec2 with nginx
  • a security group
  • dns records

Use tolocal config and it will prompt you for all the necessary aws config variables.
It queries your aws account as it goes, so it's super simple to select your vpc, public subnet, and dns hostzone.

All Commands

tolocal config [--dev]
tolocal apply
tolocal up
tolocal destroy
tolocal help

Get Started

tolocal config

the config command will

  • prompt for aws info:
    • profile
    • region
    • vpc
    • PUBLIC subnet
    • route53 dns host zone
  • prompt for subdomains=localport mappings
  • prompt for your ssh public and private key file locations
    • your public key goes on the ec2, your private key is used to start ssh tunnels.

Create the infrastructure in aws

tolocal apply

Open the ssh tunnels

This opens an ssh reverse tunel. If you run ps aux, you will see it running in the background:

ssh -i ~/.ssh/private-ssh.key -N -R :8001:localhost:4000 [email protected]

This ssh tunnel is how tolocal can securely usher traffic to your http service on localhost.

tolocal up

Destroy the infra

To stop paying for the t2.micro (~$8/mo when run 24/7*30) by destroying the infra.

tolocal destroy

Redeploy

You don't need to run config if nothing has changed.

tolocal apply
tolocal up

What Get's created?

  • t2.micro ec2 running nginx
  • ec2 security group
  • route53 dns records

Does it create a host zone?

No, an existing route53 dns host zone is required.

What about HTTP & HTTPS?

  • http is redirected to https
  • https is resolved with Lets Encrypt certbot on ec2 creation.

Development

get started

git clone [email protected]:nelsonenzo/tolocal.git
cd tolocal
npm link

For the initial config, run

tolocal config

Copy terraform.tfvars.json to the github repo terraform/terraform.tfvars.json

cp $HOME/.tolocal/terraform.tfvars.json ./terraform/terraform.tfvars.json

You can now edit that local terraform/terraform.tfvars.json file and run:

tolocal config --dev

This coppies the usual required template files + your json config, and skips prompts. It just makes development easier.

You can explore your $HOME/.tolocal directory to see what is created at any time.

Terraforms state is stored in that directory after tolocal apply

cd ~/.tolocal
~/.tolocal$ tree
.
├── main.tf
├── terraform.tfstate
├── terraform.tfstate.backup
├── terraform.tfvars.json
└── user_data.sh.tpl

if you are an npm collaborator on tolocal

npm publish --access public

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.