├── 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:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 A Cloud Guru
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # AWS Certified Solutions Architect - Associate
2 |
--------------------------------------------------------------------------------
/demos/Elastic Beanstalk.txt:
--------------------------------------------------------------------------------
1 | # Lesson: Elastic Beanstalk
2 | # URL: https://learn.acloud.guru/course/certified-solutions-architect-associate/learn/21359b7a-a8b4-4d08-8e30-48623869199f/e3662bd5-361e-43a7-9afc-c2c2f5c921e2/watch
3 |
4 | # To create your example application, you'll use the 'Create application' console wizard. It creates an Elastic Beanstalk application and launches an environment within it. An environment is the collection of AWS resources required to run your application code.
5 |
6 | # To create a service role for Elastic Beanstalk:
7 |
8 | 1. Open the Identity and Access Management (IAM) console.
9 | 2. Click 'Roles'.
10 | 3. Click 'Create role'.
11 | 4. Under 'Use cases for other AWS services', choose 'Elastic Beanstalk' and select 'Elastic Beanstalk - Customizable'.
12 | 5. Click 'Next'.
13 | 6. For 'Role name', type 'CustomServiceRoleForElasticBeanstalk'.
14 | 7. Click 'Create role'.
15 |
16 | # To create an EC2 instance profile for Elastic Beanstalk:
17 |
18 | 1. Open the Identity and Access Management (IAM) console.
19 | 2. Click 'Roles'.
20 | 3. Click 'Create role'.
21 | 4. Under 'Common use cases', choose 'EC2'.
22 | 5. Click 'Next'.
23 | 6. Select the 'AWSElasticBeanstalkReadOnly' policy name.
24 | 7. Click 'Next'.
25 | 8. For 'Role name', type 'CustomEC2InstanceProfileForElasticBeanstalk'.
26 | 9. Click 'Create role'.
27 |
28 | # To create an example application:
29 |
30 | 1. Open the Elastic Beanstalk console.
31 | 2. Click 'Create application'.
32 | 3. For Application name enter 'beansarefun'.
33 | 4. For Platform, choose 'Python'.
34 | 5. Click 'Next'.
35 | 6. For 'Use an existing service role', choose 'CustomServiceRoleForElasticBeanstalk'.
36 | 7. For 'EC2 instance profile', choose CustomEC2InstanceProfileForElasticBeanstalk'.
37 | 8. Click 'Next'.
38 | 9. On the 'Set up networking, database, and tags - optional' page, click 'Next'.
39 | 10. On the 'Configure instance traffic and scaling - optional' page, click 'Next'.
40 | 11. On the 'Configure updates, monitoring, and logging - optional' page, under 'System' choose 'Basic', and under 'Managed platform updates' > 'Managed updates', uncheck the 'Activated' box. Click 'Next'.
41 | 12. The Review page displays a summary of all your choices. Choose 'Submit' at the bottom of the page.
42 | 13. Wait for the 'Successfully launched environment: Beansarefun-env' event and check the URL available under 'Environment overview' > 'Domain'.
43 |
--------------------------------------------------------------------------------
/labs/creating-a-static-website-using-amazon-s3/error.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
In this live AWS hands-on lab, we will create and configure a simple static website. We will go
80 | through configuring that static website with a custom error page. This will demonstrate how to create very
81 | cost-efficient website hosting for sites that consist of files like HTML, CSS, JavaScript, fonts, and images.
82 |
83 |
84 |
85 |
86 | Navigation and search functions are intentionally not implemented.
87 |