-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathterraform.tfvars
More file actions
93 lines (85 loc) · 5.1 KB
/
terraform.tfvars
File metadata and controls
93 lines (85 loc) · 5.1 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# ============================================
# Provider Configuration
# ============================================
aws_region = "us-east-2"
scaleway_zone = "fr-par-2"
# ============================================
# Common Configuration
# ============================================
ssh_public_key_path_aws = "~/.ssh/aws.pub"
ssh_public_key_path_scaleway = "~/.ssh/scaleway.pem.pub"
subscription_period = "monthly"
# ============================================
# Postgres Monitor Configuration (EC2)
# ============================================
postgres_monitor_instance_name = "agg-mode-mainnet-postgres-monitor"
postgres_monitor_hostname = "agg-mode-mainnet-postgres-monitor"
postgres_monitor_instance_type = "t2.micro"
postgres_monitor_ssh_key_name = "agg-mode-mainnet-postgres-monitor-key"
postgres_monitor_cloud_init_template_path = "../../cloudinit/mainnet-cloud-init.yaml"
# ============================================
# Postgres Primary Configuration (Elastic Metal)
# ============================================
postgres_primary_zone = "fr-par-2"
postgres_primary_offer_name = "EM-I120E-NVME"
postgres_primary_server_name = "agg-mode-mainnet-postgres-1"
postgres_primary_hostname = "agg-mode-mainnet-postgres-1"
postgres_primary_description = "PostgreSQL server 1 for mainnet"
postgres_primary_ssh_key_name = "agg-mode-mainnet-postgres-1-key"
postgres_primary_cloud_init_template_path = "../../cloudinit/mainnet-cloud-init.yaml"
postgres_primary_tags = ["postgres", "postgres-1", "mainnet"]
# ============================================
# Postgres Secondary Configuration (Elastic Metal)
# ============================================
postgres_secondary_zone = "nl-ams-1"
postgres_secondary_offer_name = "EM-A610R-NVME"
postgres_secondary_server_name = "agg-mode-mainnet-postgres-2"
postgres_secondary_hostname = "agg-mode-mainnet-postgres-2"
postgres_secondary_description = "PostgreSQL server 2 for mainnet"
postgres_secondary_ssh_key_name = "agg-mode-mainnet-postgres-2-key"
postgres_secondary_cloud_init_template_path = "../../cloudinit/mainnet-cloud-init.yaml"
postgres_secondary_tags = ["postgres", "postgres-2", "mainnet"]
# ============================================
# Gateway Primary Configuration (Elastic Metal)
# ============================================
gateway_primary_zone = "fr-par-2"
gateway_primary_offer_name = "EM-I120E-NVME"
gateway_primary_server_name = "agg-mode-mainnet-gateway-1"
gateway_primary_hostname = "agg-mode-mainnet-gateway-1"
gateway_primary_description = "Gateway server 1 for mainnet"
gateway_primary_ssh_key_name = "agg-mode-mainnet-gateway-1-key"
gateway_primary_cloud_init_template_path = "../../cloudinit/mainnet-cloud-init.yaml"
gateway_primary_tags = ["gateway", "gateway-1", "mainnet"]
# ============================================
# Gateway Secondary Configuration (Elastic Metal)
# ============================================
gateway_secondary_zone = "nl-ams-1"
gateway_secondary_offer_name = "EM-A610R-NVME"
gateway_secondary_server_name = "agg-mode-mainnet-gateway-2"
gateway_secondary_hostname = "agg-mode-mainnet-gateway-2"
gateway_secondary_description = "Gateway server 2 for mainnet"
gateway_secondary_ssh_key_name = "agg-mode-mainnet-gateway-2-key"
gateway_secondary_cloud_init_template_path = "../../cloudinit/mainnet-cloud-init.yaml"
gateway_secondary_tags = ["gateway", "gateway-2", "mainnet"]
# ============================================
# Metrics Configuration (Elastic Metal)
# ============================================
metrics_server_zone = "nl-ams-1"
metrics_server_offer_name = "EM-A610R-NVME"
metrics_server_name = "agg-mode-mainnet-metrics"
metrics_server_hostname = "agg-mode-mainnet-metrics"
metrics_server_description = "Metrics server for mainnet"
metrics_server_ssh_key_name = "agg-mode-mainnet-metrics-key"
metrics_server_cloud_init_template_path = "../../cloudinit/mainnet-cloud-init.yaml"
metrics_server_tags = ["metrics", "mainnet"]
# ============================================
# Sender Configuration (Elastic Metal)
# ============================================
sender_server_zone = "nl-ams-1"
sender_server_offer_name = "EM-A610R-NVME"
sender_server_name = "agg-mode-mainnet-sender"
sender_server_hostname = "agg-mode-mainnet-sender"
sender_server_description = "Sender server for mainnet"
sender_server_ssh_key_name = "agg-mode-mainnet-sender-key"
sender_server_cloud_init_template_path = "../../cloudinit/mainnet-cloud-init.yaml"
sender_server_tags = ["sender", "mainnet"]