Merge pull request #122 from kevinclev/patch-1

Add The AWS Way
This commit is contained in:
Luke Stephens (hakluke) 2020-01-10 14:01:02 +10:00 committed by GitHub
commit df7351d842
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -617,3 +617,16 @@ print('The universe is dead, VIM no longer exists');
1. Try CTRL+C
2. Ask a senior engineer
3. Have senior engineer direct you to [how-to-exit-vim](https://github.com/hakluke/how-to-exit-vim)
## The AWS Way
1. In AWS EC2, select **Launch Instance**.
2. Launch an EC2 instance with a Linux based AMI.
3. ssh into the newly created EC2 instance
```shell
ssh -i <ec2 keypair pem location> ec2-user@<ec2 instance ip address>
```
4. Launch vim
```shell
vim
```
5. In the AWS EC2, select the newly created EC2 instance and terminate the instance.