-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcentral-mds.tfvars
54 lines (53 loc) · 1.13 KB
/
central-mds.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
# Configure the AWS Provider
region = "us-east-1"
dns_zone = "Z3DYW71V76XUGV"
name_prefix = "ivan-mds"
user_name = "ivan"
key_name = "ivan_cloud"
owner_email = "[email protected]"
owner_name = "Ivan Kunz"
domain_name = "ps.confluent.io"
server_sets = {
"zk" = {
count = 3,
size = "t3a.micro",
volume_size = 10,
dns_name = "zk"
}
"broker" = {
count = 3,
size = "t3a.medium",
volume_size = 50,
dns_name = "kafka"
}
"connect" = {
count = 0,
size = "t3a.medium",
volume_size = 40,
dns_name = "connect"
}
"schemaregistry" = {
count = 0,
size = "t3a.small",
volume_size = 30,
dns_name = "schemaregistry"
}
"restproxy" = {
count = 0,
size = "t3a.small",
volume_size = 10,
dns_name = "restproxy"
}
"controlcenter" = {
count = 1,
size = "t3a.medium",
volume_size = 50,
dns_name = "controlcenter"
}
"ksql" = {
count = 0,
size = "t3a.medium",
volume_size = 50,
dns_name = "ksql"
}
}