Skip to content

Commit 40b49e8

Browse files
committed
Add README.md and tutorial walkthrough for script-only tutorials
1 parent 6d95915 commit 40b49e8

8 files changed

Lines changed: 215 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Aws Organizations Gs
2+
3+
A read-only script that queries Organizations resources and displays information.
4+
5+
## Running
6+
7+
```bash
8+
bash aws-organizations-gs.sh
9+
```
10+
11+
## What it does
12+
13+
1. Describing organization
14+
2. Listing accounts
15+
3. Listing organizational units
16+
4. Listing policies
17+
18+
## Resources created
19+
20+
None — this script is read-only.
21+
22+
## Cost
23+
24+
No cost. This script only reads existing resources.
25+
26+
## Related docs
27+
28+
- [AWS CLI organizations reference](https://docs.aws.amazon.com/cli/latest/reference/organizations/index.html)
29+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Aws Organizations Gs
2+
3+
## Prerequisites
4+
5+
1. AWS CLI installed and configured (`aws configure`)
6+
2. Appropriate IAM permissions for the AWS services used
7+
8+
## Step 1: Describing organization
9+
10+
The script handles this step automatically. See `aws-organizations-gs.sh` for the exact CLI commands.
11+
12+
## Step 2: Listing accounts
13+
14+
The script handles this step automatically. See `aws-organizations-gs.sh` for the exact CLI commands.
15+
16+
## Step 3: Listing organizational units
17+
18+
The script handles this step automatically. See `aws-organizations-gs.sh` for the exact CLI commands.
19+
20+
## Step 4: Listing policies
21+
22+
The script handles this step automatically. See `aws-organizations-gs.sh` for the exact CLI commands.
23+

tuts/122-aws-health-gs/README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Aws Health Gs
2+
3+
A read-only script that queries Health resources and displays information.
4+
5+
## Running
6+
7+
```bash
8+
bash aws-health-gs.sh
9+
```
10+
11+
## What it does
12+
13+
1. Describing events (last 7 days)
14+
2. Describing event types
15+
3. Describing affected entities
16+
17+
## Resources created
18+
19+
None — this script is read-only.
20+
21+
## Cost
22+
23+
No cost. This script only reads existing resources.
24+
25+
## Related docs
26+
27+
- [AWS CLI health reference](https://docs.aws.amazon.com/cli/latest/reference/health/index.html)
28+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Aws Health Gs
2+
3+
## Prerequisites
4+
5+
1. AWS CLI installed and configured (`aws configure`)
6+
2. Appropriate IAM permissions for the AWS services used
7+
8+
## Step 1: Describing events (last 7 days)
9+
10+
The script handles this step automatically. See `aws-health-gs.sh` for the exact CLI commands.
11+
12+
## Step 2: Describing event types
13+
14+
The script handles this step automatically. See `aws-health-gs.sh` for the exact CLI commands.
15+
16+
## Step 3: Describing affected entities
17+
18+
The script handles this step automatically. See `aws-health-gs.sh` for the exact CLI commands.
19+

tuts/124-aws-ssm-gs/README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Aws Ssm Gs
2+
3+
An AWS CLI tutorial that demonstrates Ssm operations.
4+
5+
## Running
6+
7+
```bash
8+
bash aws-ssm-gs.sh
9+
```
10+
11+
To auto-run with cleanup:
12+
13+
```bash
14+
echo 'y' | bash aws-ssm-gs.sh
15+
```
16+
17+
## What it does
18+
19+
1. Creating a String parameter
20+
2. Creating a SecureString parameter
21+
3. Creating a StringList parameter
22+
4. Getting parameters
23+
5. Getting parameters by path
24+
6. Parameter history
25+
26+
## Resources created
27+
28+
- Parameter
29+
30+
The script prompts you to clean up resources when it finishes.
31+
32+
## Cost
33+
34+
Free tier eligible for most operations. Clean up resources after use to avoid charges.
35+
36+
## Related docs
37+
38+
- [AWS CLI ssm reference](https://docs.aws.amazon.com/cli/latest/reference/ssm/index.html)
39+

tuts/124-aws-ssm-gs/aws-ssm-gs.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Aws Ssm Gs
2+
3+
## Prerequisites
4+
5+
1. AWS CLI installed and configured (`aws configure`)
6+
2. Appropriate IAM permissions for the AWS services used
7+
8+
## Step 1: Creating a String parameter
9+
10+
The script handles this step automatically. See `aws-ssm-gs.sh` for the exact CLI commands.
11+
12+
## Step 2: Creating a SecureString parameter
13+
14+
The script handles this step automatically. See `aws-ssm-gs.sh` for the exact CLI commands.
15+
16+
## Step 3: Creating a StringList parameter
17+
18+
The script handles this step automatically. See `aws-ssm-gs.sh` for the exact CLI commands.
19+
20+
## Step 4: Getting parameters
21+
22+
The script handles this step automatically. See `aws-ssm-gs.sh` for the exact CLI commands.
23+
24+
## Step 5: Getting parameters by path
25+
26+
The script handles this step automatically. See `aws-ssm-gs.sh` for the exact CLI commands.
27+
28+
## Step 6: Parameter history
29+
30+
The script handles this step automatically. See `aws-ssm-gs.sh` for the exact CLI commands.
31+
32+
## Cleanup
33+
34+
The script prompts you to clean up all created resources. If you need to clean up manually, check the script log for the resource names that were created.
35+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Aws Trustedadvisor Gs
2+
3+
A read-only script that queries Support resources and displays information.
4+
5+
## Running
6+
7+
```bash
8+
bash aws-trustedadvisor-gs.sh
9+
```
10+
11+
## What it does
12+
13+
1. Listing checks
14+
2. Getting check results
15+
16+
## Resources created
17+
18+
None — this script is read-only.
19+
20+
## Cost
21+
22+
No cost. This script only reads existing resources.
23+
24+
## Related docs
25+
26+
- [AWS CLI support reference](https://docs.aws.amazon.com/cli/latest/reference/support/index.html)
27+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Aws Trustedadvisor Gs
2+
3+
## Prerequisites
4+
5+
1. AWS CLI installed and configured (`aws configure`)
6+
2. Appropriate IAM permissions for the AWS services used
7+
8+
## Step 1: Listing checks
9+
10+
The script handles this step automatically. See `aws-trustedadvisor-gs.sh` for the exact CLI commands.
11+
12+
## Step 2: Getting check results
13+
14+
The script handles this step automatically. See `aws-trustedadvisor-gs.sh` for the exact CLI commands.
15+

0 commit comments

Comments
 (0)