Skip to content

Commit 06aeafb

Browse files
committed
doco updates
1 parent 2f37913 commit 06aeafb

File tree

4 files changed

+62
-3
lines changed

4 files changed

+62
-3
lines changed

exercises/exercise1/README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,13 @@ Create a simple AWS VPC spanning 2 AZs. Public subnets will be created, together
33

44
https://github.com/cloudacademy/terraform-aws/tree/main/exercises/exercise1
55

6-
![AWS Architecture](/doc/AWS-VPC-Nginx.png)
6+
![AWS Architecture](/doc/AWS-VPC-Nginx.png)
7+
8+
#### Project Structure
9+
10+
```
11+
├── main.tf
12+
├── outputs.tf
13+
├── terraform.tfvars
14+
└── variables.tf
15+
```

exercises/exercise2/README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,12 @@ Create an advanced AWS VPC spanning 2 AZs with both public and private subnets.
33

44
https://github.com/cloudacademy/terraform-aws/tree/main/exercises/exercise2
55

6-
![AWS Architecture](/doc/AWS-VPC-ASG-Nginx.png)
6+
![AWS Architecture](/doc/AWS-VPC-ASG-Nginx.png)
7+
8+
```
9+
├── ec2.userdata
10+
├── main.tf
11+
├── outputs.tf
12+
├── terraform.tfvars
13+
└── variables.tf
14+
```

exercises/exercise3/README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,14 @@ Same AWS architecture as used in Exercise 2. This exercise demonstrates a differ
33

44
https://github.com/cloudacademy/terraform-aws/tree/main/exercises/exercise3
55

6-
![AWS Architecture](/doc/AWS-VPC-ASG-Nginx.png)
6+
![AWS Architecture](/doc/AWS-VPC-ASG-Nginx.png)
7+
8+
#### Project Structure
9+
10+
```
11+
├── ec2.userdata
12+
├── main.tf
13+
├── outputs.tf
14+
├── terraform.tfvars
15+
└── variables.tf
16+
```

exercises/exercise4/README.md

+32
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,35 @@ The auto scaling web application layer bootstraps itself with both the [Frontend
1414
* Frontend: https://github.com/cloudacademy/voteapp-frontend-react-2020/releases/latest
1515

1616
* API: https://github.com/cloudacademy/voteapp-api-go/releases/latest
17+
18+
#### Project Structure
19+
20+
```
21+
├── main.tf
22+
├── modules
23+
│   ├── application
24+
│   │   ├── main.tf
25+
│   │   ├── outputs.tf
26+
│   │   └── vars.tf
27+
│   ├── bastion
28+
│   │   ├── install.sh
29+
│   │   ├── main.tf
30+
│   │   ├── outputs.tf
31+
│   │   └── vars.tf
32+
│   ├── network
33+
│   │   ├── main.tf
34+
│   │   ├── outputs.tf
35+
│   │   └── vars.tf
36+
│   ├── security
37+
│   │   ├── main.tf
38+
│   │   ├── outputs.tf
39+
│   │   └── vars.tf
40+
│   └── storage
41+
│   ├── install.sh
42+
│   ├── main.tf
43+
│   ├── outputs.tf
44+
│   └── vars.tf
45+
├── outputs.tf
46+
├── terraform.tfvars
47+
└── variables.tf
48+
```

0 commit comments

Comments
 (0)