Posts

Showing posts from March, 2021

VPC,Cloud Front,EC2,RDS in AWS

 VPC allows you to provision a logically isolated section of AWS where we can launch AWS resources in a virtual network. Cloud Front is a Fast Highly Secure and Programmable Content Delivery Network EC2 provides compute resources  RDS is Amazon's Relationship Database System.

AWS Partnerships and Exams

To be an AWS Partner the company must have AWS certified resources that is also where the value of your certification lies besides knowledge. Partnerships Select At least 2 Practitioner's Certified, 2 Associate  Certified, 0 Professional Specialty Certified Advance At least 4 Practitioner's Certified, 4 Associate  Certified, 3 Professional Specialty Certified Premier At least 10 Practitioner's Certified, 10 Associate  Certified, 10 Professional Specialty Certified AWS certified Solutions Architect Associate Exam 130 mins 65 questions Multiple Choice 100-1000 score range and passing is 720 i.e is 70% Valid for 3 years Scenario based questions Topics to be covered Designing Resilient Architecture using AWS Networking and Computing VPC's,EC2,ECS Storage,Databases and Migration High Availability and Scalability ELB's,Cloud Front,Route 53  Application Services SQS,SNS,Deployments,Server less and Hybrid Envirnoments Logging and Security Cloud Watch,Cloud Trail,Security, E

AWS Policy Examples

   create a policy that grants access to everything  {     "Version": "2020-09-20",     "Statement": [         {             "Effect": “Allow”,             "Action": “*”,             "Resource": “*”         }     ] } create a policy that denies all EC2 permissions. {     "Version": "2020-09-20",     "Statement": [         {             "Effect": “Deny”,             "Action": “ec2:*”,             "Resource": “*”         }     ] } create a policy that allows a user to ONLY stop and start EC2 instances. {     "Version": "2020-09-20",     "Statement": [         {             "Effect": “Allow”,             "Action": [                 “ec2:StartInstances:*”,                 “ec2:StopInstances:*”             ],             "Resource": “*”         }     ] } create a policy that allows a user to list the contents of S