Notes AWS SysOps
Notes AWS SysOps
AWS SysOps 1
Introduction, AWS Fundamentals, EC2, IAM
AWS SysOps 2
Getting Started
These are general information which will be reiterated again on the other notes,
but I find as core details for any Solutions Architect or simply anyone in an AWS
SysOps role.
5. Instance Profile
AWS SysOps 3
There are options where you can have dedicated hardware or connection and you
can find more details on that in the other notes, but the majority of AWS services
are configured in a multi-tenant setup.
These AWS services can either be Public or Private.
Public Services
These are services with public endpoints.
Private Services
These are services that can have a public IP address but exist within a VPC.
as an example, EC2 instances have public IP addresses which you can SSH
into.
from the VPC, your resources can access outside resources through:
Internet Gateway
Can be used to go to the public internet and connect to AWS public
services
VPC Endpoint
Can be used to access AWS public resources throguh a private connection
A Stateless firewall checks for an allow rule for both connections - inbound and
outbound. Network ACLs (NACLs) are stateless firewalls.
AWS SysOps 4
You can spun up instances and provision resources by configuring them through
the console. You could also run commands through the AWS Command Line or
AWS CLI.
You can find more details on how to install and use AWS CLI in the AWS
Documentation Page.
<img src="../Images/aws-cli.png" width=700>
When data comes in on the internet gateway with destination address set to the
public IP address of the instance, the internet gateway is actually doing a 1:1 NAT
Translation.
it then checks its route table if the private IP address matches a CIDR block
the same process happens when the instance is sending internet-bound data
AWS SysOps 5
Instance Profile
An Instance Profile is a container for an IAM role that you can use to pass role
information to an EC2 instance when the instance starts.
# Make sure you have configured you AWS CLI already with your
information
aws configure
01-EC2_and_Lambda_for_SysOps
AWS SysOps 6