-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Fix warnings, semantic markup, content"
This reverts commit 6bf38b2.
- Loading branch information
1 parent
c9736b5
commit fc07d29
Showing
9 changed files
with
211 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"id": "502f2360", | ||
"metadata": {}, | ||
"source": [ | ||
"In the previous lesson we learned how to launch a virtual machine from the AWS console. We selected an Amazon Machine Image (AMI), Chose an Instance and Configured Launch Settings. Recall that there are 7 steps to walk through to create a new EC2 instance; we will go through each in detail: \n", | ||
"\n", | ||
"1. Select an AMI\n", | ||
"2. Choose Instance Type\n", | ||
"3. Configure Instance \n", | ||
"4. Add Storage\n", | ||
"5. Add Tags\n", | ||
"6. Configure Security Group\n", | ||
"7. Review/Launch" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "b9809503", | ||
"metadata": {}, | ||
"source": [ | ||
"## Step 4. Add Storage\n", | ||
"\n", | ||
"Storage on an EC2 instance is akin to a hard drive. Here we will leave the default settings but it is important to know that a hard drive on an EC2 instance is known as [Elastic Block Storage](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AmazonEBS.html). EBS volumes behave like raw, unformatted block devices.\n", | ||
"\n", | ||
"<img src=\"./images/ec2-storage.png\" width=720 align=\"center\">" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "17597535", | ||
"metadata": {}, | ||
"source": [ | ||
"## Step 5: Add Tags\n", | ||
"\n", | ||
"[Tags](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html) are labels that you assign to an AWS resource. Each tag consists of a key and an optional value, both of which you define.Tags enable you to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. e\n", | ||
"\n", | ||
"<img src=\"./images/ec2-tags.png\" width=720 align=\"center\">\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "4ee655a3", | ||
"metadata": {}, | ||
"source": [ | ||
"## Step 6: Configure Security Group\n", | ||
"\n", | ||
"A [security group](https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html) acts as a virtual firewall for your EC2 instances to control inbound and outbound traffic. Again, we will not delve too much into networking protocols in CLASS Essentials. We will leave the default values of opening port 22 so that we can securely log in to the EC2 instance that we create. \n", | ||
"\n", | ||
"<img src=\"./images/ec2-sg.png\" width=720 align=\"center\">" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "5235bac7", | ||
"metadata": {}, | ||
"source": [ | ||
"## Step 7: Review Instance Launch\n", | ||
"\n", | ||
"<img src=\"./images/ec2-launch.png\" width=720 align=\"center\">\n", | ||
"\n", | ||
"<img src=\"./images/ec2-sshkey.png\" width=720 align=\"center\">\n", | ||
"\n", | ||
"<img src=\"./images/ec2-confirm.png\" width=720 align=\"center\">" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "113ba95a", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.9.5" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
Oops, something went wrong.