generated from devopsacademyau/projects-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tfvars
56 lines (53 loc) · 1.08 KB
/
main.tfvars
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
48
49
50
51
52
53
54
55
projectname = "pr1-grp3"
region = "ap-southeast-2"
public_subnets = [
{
name = "public-a"
cidr = "10.0.10.0/24"
az = "ap-southeast-2a"
publicip = true
},
{
name = "public-b"
cidr = "10.0.20.0/24"
az = "ap-southeast-2b"
publicip = true
}
]
private_subnets = [
{
name = "private-a"
cidr = "10.0.11.0/24"
az = "ap-southeast-2a"
publicip = false
},
{
name = "private-b"
cidr = "10.0.21.0/24"
az = "ap-southeast-2b"
publicip = false
}
]
private_subnet_id = ""
ecs_nodes_sg_id = ""
vpc_cidr = "10.0.0.0/16"
security_group = [
{
id = ""
}
]
az = [
"ap-southeast-2a",
"ap-southeast-2b"
]
inst_type = "t2.micro"
inst_key = ""
ami_id = "ami-064db566f79006111"
asg_desired_capac = "2"
asg_max_size = "2"
asg_min_size = "1"
account_id = ""
retention_in_days = 30
#TO BE UPDATED BY COMPANY
certificate_arn = "arn:aws:acm:ap-southeast-2:048355378787:certificate/a0d93fca-274b-44e6-8d77-5bd0be235ecb"
domainname = "devopsandreazza.tk."