Skip to content

Commit 1a7e277

Browse files
committed
welcome all. Its starting to make sense now
1 parent 4afd52c commit 1a7e277

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Welcome to advanced git</title>
7+
</head>
8+
<body>
9+
<h1>Git playground. Welcome all</h1>
10+
</body>
11+
</html>

script.js

Whitespace-only changes.

style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
h1{
2+
color: aquamarine;
3+
font: italic;
4+
}

terraform/vpc.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ module "vpc" {
77
cidr = "172.20.0.0/16"
88
azs = slice(data.aws_availability_zones.available.names, 0, 3)
99

10-
#private_subnets = ["172.20.1.0/24", "172.20.2.0/24", "172.20.3.0/24"]
11-
#public_subnets = ["172.20.4.0/24", "172.20.5.0/24", "172.20.6.0/24"]
10+
#This is just for tryout.
11+
private_subnets = ["172.20.1.0/24", "172.20.2.0/24", "172.20.3.0/24"]
12+
public_subnets = ["172.20.4.0/24", "172.20.5.0/24", "172.20.6.0/24"]
1213

1314
enable_nat_gateway = true
1415
single_nat_gateway = true

0 commit comments

Comments
 (0)