globaldatanetmenu

.How to access AWS Cloud9 IDE from VSCode?

Apr 21st 2020-2 min read

There are great benefits from using Cloud9, especially with Terraform, it’s super-fast since the connection to AWS API happens internally, I was facing terraform apply took up to 15 minutes on my machine, now when running the same commands on cloud9 it’s only 15 seconds!

The Cloud9 UI is nice, but you can still VScode with all of your extensions with cloud 9, using remote ssh extension.

Remote Development using SSH

Archicecture

How to connect to Cloud9 EC2 instance from local VSCode

   ssh-keygen -t ed25519
   cat ~/.ssh/id_ed25519.pub
   [ copy your key]

   nano ~/.ssh/config # add the following
   Host hl-dev-cloud9
    HostName ec2-XX-XXX-XX-XXX.eu-central-1.compute.amazonaws.com
    User ec2-user
    IdentityFile /Users/mohammed/.ssh/id_ed25519_cloud9
  • Add Pub Key to Cloud9 EC2 instance.
  • Login into the EC2 and add your SSH Pub Key
cat >> ~/.ssh/authorized_keys
[ paste your key here]
  • Go to VSCode UI choose remote ssh machines and choose your cloud9 instance

VS Code

Cloud9 Instance: Setup AWS CodeCommit Access, Install Terraform and Terragrunt

  1. Setup your ENV workflow for AWS Access [~/.aws/config]:
  2. Git Access https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-https-unixes.html#setting-up-https-unixes-credential-helper
  3. Install Terraform, Terragrunt

Troubleshooting

How to solve "Visual Studio Code is unable to watch for file changes in this large workspace" (error ENOSPC)?

When you see this notification, it indicates that the VS Code file watcher is running out of handles because the workspace is large and contains many files. The current limit can be viewed by running:

cat /proc/sys/fs/inotify/max_user_watches

The limit can be increased to its maximum by editing /etc/sysctl.conf and adding this line to the end of the file:

fs.inotify.max_user_watches=524288

The new value can then be loaded in by running sudo sysctl -p.


globaldatanetCloud Development, Optimization & Automation

.Navigation

.Social

  • follow globaldatanet on instagram
  • follow globaldatanet on facebook
  • follow globaldatanet on twitter
  • follow globaldatanet on linkendin
  • follow globaldatanet on twitch
  •  listen to our serverless world podcast
  • follow globaldatanet's tech rss feed
  • follow globaldatanet at github
© 2024 by globaldatanet. All Right Reserved
Your privacy is important to us!

We use cookies on our website. Some of them are essential,while others help us to improve our online offer.
You can find more information in our Privacy policy