AWS Deploy VM
Description:
Follow this guide to deploy a VM in AWS via GUI. Pretty basic, but still noted.
To Resolve:
-
Sign in to AWS, type
EC2
under services. NowLaunch Instance
. -
Choose with
Windows Base 2016
image -
Choose size – I chose T3.small
- On this screen, make sure to choose:
- Subnet = Choose a subnet in your VPC.
- IAM Role = Choose an IAM Role you have configured
- Protect against accidental deletion = Checked
- Enable Cloudwatch = Checked
-
On the
Add Storage
, just keep defaults -
On
Add Tags
, enterOwner
and$Department who owns the server
-
For Security Groups, choose
Default
for now. We will eventually be breaking these out by groups like – Web servers, Domain Controllers, etc. -
Click
Review and Launch
. A screen will pop up and ask for you to use some keys. Click toCreate a new key pair
and enter your name. Now download the .pem file to your machine. -
After your server is created, go to
EC2 – Instances
and select your server and name it by clicking on the pencil icon. -
After selecting your machine, click on
View Inbound Rules
. Make sure that Source is$yourPublic IP
for port3389
andICMP – Protocol Version 4
. - Lastly, choose
Connect
to connect to the machine. It will ask you toGet Password
. Just point it to your pem file you downloaded earlier and you Copy/paste the password somewhere. Now go back and chooseDownload RDP file
and RDP to your machine usingAdministrator/$yourPassword
.
Comments