├── LICENSE ├── README.md ├── demos └── Elastic Beanstalk.txt └── labs ├── creating-a-static-website-using-amazon-s3 ├── error.html └── index.html ├── creating-an-auto-scaling-group-and-app-load-balancer-aws ├── acg.jpg └── index.html ├── creating-and-working-with-an-ec2-instance └── README.md ├── getting_started_with_cfn ├── createstack.json ├── templatestructure.json ├── templatestructure.yaml ├── updatestack1.json └── updatestack2.json └── scaling-ec2-using-sqs ├── README.md ├── receive_messages.py ├── requirements.txt └── send_messages.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AWS Certified Solutions Architect - Associate 2 | -------------------------------------------------------------------------------- /demos/Elastic Beanstalk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/demos/Elastic Beanstalk.txt -------------------------------------------------------------------------------- /labs/creating-a-static-website-using-amazon-s3/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/creating-a-static-website-using-amazon-s3/error.html -------------------------------------------------------------------------------- /labs/creating-a-static-website-using-amazon-s3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/creating-a-static-website-using-amazon-s3/index.html -------------------------------------------------------------------------------- /labs/creating-an-auto-scaling-group-and-app-load-balancer-aws/acg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/creating-an-auto-scaling-group-and-app-load-balancer-aws/acg.jpg -------------------------------------------------------------------------------- /labs/creating-an-auto-scaling-group-and-app-load-balancer-aws/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/creating-an-auto-scaling-group-and-app-load-balancer-aws/index.html -------------------------------------------------------------------------------- /labs/creating-and-working-with-an-ec2-instance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/creating-and-working-with-an-ec2-instance/README.md -------------------------------------------------------------------------------- /labs/getting_started_with_cfn/createstack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/getting_started_with_cfn/createstack.json -------------------------------------------------------------------------------- /labs/getting_started_with_cfn/templatestructure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/getting_started_with_cfn/templatestructure.json -------------------------------------------------------------------------------- /labs/getting_started_with_cfn/templatestructure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/getting_started_with_cfn/templatestructure.yaml -------------------------------------------------------------------------------- /labs/getting_started_with_cfn/updatestack1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/getting_started_with_cfn/updatestack1.json -------------------------------------------------------------------------------- /labs/getting_started_with_cfn/updatestack2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/getting_started_with_cfn/updatestack2.json -------------------------------------------------------------------------------- /labs/scaling-ec2-using-sqs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/scaling-ec2-using-sqs/README.md -------------------------------------------------------------------------------- /labs/scaling-ec2-using-sqs/receive_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/scaling-ec2-using-sqs/receive_messages.py -------------------------------------------------------------------------------- /labs/scaling-ec2-using-sqs/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 -------------------------------------------------------------------------------- /labs/scaling-ec2-using-sqs/send_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACloudGuru-Resources/Course-Certified-Solutions-Architect-Associate/HEAD/labs/scaling-ec2-using-sqs/send_messages.py --------------------------------------------------------------------------------