-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterraform.tfvars
More file actions
47 lines (33 loc) · 954 Bytes
/
Copy pathterraform.tfvars
File metadata and controls
47 lines (33 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
project_id = "gcp-multitier-app"
region = "asia-south1"
vpc_name = "multitier-vpc"
subnets = [
{
name = "frontend-subnet"
region = "asia-south1"
cidr = "10.10.10.0/24"
private_google_access = false
},
{
name = "app-subnet"
region = "asia-south1"
cidr = "10.10.20.0/24"
private_google_access = true
},
{
name = "db-subnet"
region = "asia-south1"
cidr = "10.10.30.0/24"
private_google_access = true
}
]
nat_region = "asia-south1"
allowed_ssh_source_ranges = ["208.67.222.222/32"]
frontend_subnet = "frontend-subnet"
app_subnet = "app-subnet"
machine_type = "e2-medium"
allowed_frontend_to_app = ["frontend"]
allowed_app_to_db = ["app"]
db_port = 3306
app_port = 8080
enable_cloud_armor = true