Skip to content

Commit

Permalink
[Modify/Add] Implement Typos Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kananinirav committed Feb 27, 2024
1 parent 7b51cda commit 4fa8ce1
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 8 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/typos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check typos
on:
pull_request:
push:
jobs:
run:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v2
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected]
- name: Check spelling of file.txt
if: ${{ steps.changed-files.outputs.all_changed_files != '' }}
uses: crate-ci/typos@master
with:
files: ${{ steps.changed-files.outputs.all_changed_files }}
config: ./.typos.toml
6 changes: 6 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# https://github.com/crate-ci/typos/blob/master/docs/reference.md

[default.extend-words]
# Don't correct the surname "Teh"
Daa = 'Daa'
CAF = 'CAF'
4 changes: 2 additions & 2 deletions practice-exam/practice-exam-10.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ If this practice exam has been helpful to you please share it with others and re
</details>

11. A customer is using multiple AWS accounts with separate billing. How can the customer take advantage of volume discounts with minimal impact to the AWS resources?
- A. Create one global AWS account and move all AWS resources to tha account.
- A. Create one global AWS account and move all AWS resources to that account.
- B. Sign up for three years of Reserved Instance pricing up front.
- C. Use the consolidated billing feature from AWS Organizations.
- D. Sign up for the AWS Enterprise support plan to get volume discounts.
Expand Down Expand Up @@ -152,7 +152,7 @@ If this practice exam has been helpful to you please share it with others and re
</details>

15. According to best practices, how should an application be designed to run in the AWS Cloud?
- A. Use tighly coupled components.
- A. Use tightly coupled components.
- B. Use loosely coupled components.
- C. Use infrequently coupled components.
- D. Use frequently coupled components.
Expand Down
4 changes: 2 additions & 2 deletions practice-exam/practice-exam-13.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ If this practice exam has been helpful to you please share it with others and re
</details>

1. According to best practices, how should an application be designed to run in the AWS Cloud?
- A. Use tighly coupled components.
- A. Use tightly coupled components.
- B. Use loosely coupled components.
- C. Use infrequently coupled components.
- D. Use frequently coupled components.
Expand Down Expand Up @@ -633,7 +633,7 @@ If this practice exam has been helpful to you please share it with others and re
</details>

1. A customer is using multiple AWS accounts with separate billing. <br/>How can the customer take advantage of volume discounts with minimal impact to the AWS resources?
- A. Create one global AWS acount and move all AWS resources to tha account.
- A. Create one global AWS account and move all AWS resources to that account.
- B. Sign up for three years of Reserved Instance pricing up front.
- C. Use the consolidated billing feature from AWS Organizations.
- D. Sign up for the AWS Enterprise support plan to get volume discounts.
Expand Down
2 changes: 1 addition & 1 deletion practice-exam/practice-exam-8.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ If this practice exam has been helpful to you please share it with others and re
- A. It eliminates the need for change management.
- B. It allows for Cross-Region Replication.
- C. It helps AWS customers reduce Privileged Access to AWS resources.
- D. It allows individual application compenents or services to be modified without affecting other components.
- D. It allows individual application components or services to be modified without affecting other components.

<details markdown=1><summary markdown='span'>Answer</summary>
Correct answer: D
Expand Down
6 changes: 3 additions & 3 deletions sections/security_compliance.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Security & Compliance

- [Security & Compliance](#security--compliance)
- [Security \& Compliance](#security--compliance)
- [AWS Shared Responsibility Model](#aws-shared-responsibility-model)
- [Example, for RDS](#example-for-rds)
- [Example, for S3](#example-for-s3)
Expand Down Expand Up @@ -290,10 +290,10 @@
- Abusive & prohibited behaviors are:
- Spam – receiving undesired emails from AWS-owned IP address, websites & forums spammed by AWS resources
- Port scanning – sending packets to your ports to discover the unsecured ones
- DoS or DDoS attacks – AWS-owned IP addresses attempting to overwhlem or crash your servers/softwares
- DoS or DDoS attacks – AWS-owned IP addresses attempting to overwhelm or crash your servers/softwares
- Intrusion attempts – logging in on your resources
- Hosting objectionable or copyrighted content – distributing illegal or copyrighted content without consent
- Distributing malware – AWS resources distributing softwares to harm computers or machines
- Distributing malware – AWS resources distributing software to harm computers or machines
- Contact the AWS Abuse team: AWS abuse form, or [email protected]

## Root user privileges
Expand Down

0 comments on commit 4fa8ce1

Please sign in to comment.