Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add additional es machines in backup-production #6392

Merged
merged 4 commits into from
Oct 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 31 additions & 7 deletions environments/backup-production/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ servers:
count: 2
server_auto_recovery: true

- server_name: "esmaster_a0-bk-production"
- server_name: "esmaster_a1-bk-production"
server_instance_type: t3a.xlarge
network_tier: "db-private"
az: "c"
group: "elasticsearch"
os: jammy
volume_size: 20

- server_name: "esmaster_b0-bk-production"
- server_name: "esmaster_b1-bk-production"
server_instance_type: t3a.xlarge
network_tier: "db-private"
az: "b"
Expand All @@ -69,7 +69,7 @@ servers:
volume_size: 20
volume_encrypted: yes

- server_name: "esmaster_c0-bk-production"
- server_name: "esmaster_c1-bk-production"
server_instance_type: t3a.xlarge
network_tier: "db-private"
az: "c"
Expand All @@ -78,7 +78,7 @@ servers:
volume_size: 20
volume_encrypted: yes

- server_name: "es_a1{i}-bk-production"
- server_name: "es_a2{i}-bk-production"
server_instance_type: t3a.xlarge
network_tier: "db-private"
az: "c"
Expand All @@ -88,9 +88,9 @@ servers:
volume_size: 20
group: "elasticsearch"
os: jammy
count: 5
count: 4

- server_name: "es_b1{i}-bk-production"
- server_name: "es_b2{i}-bk-production"
server_instance_type: t3a.xlarge
network_tier: "db-private"
az: "b"
Expand All @@ -100,7 +100,31 @@ servers:
volume_size: 20
group: "elasticsearch"
os: jammy
count: 5
count: 4

- server_name: "es_a3{i}-bk-production"
server_instance_type: t3a.xlarge
network_tier: "db-private"
az: "c"
volume_size: 20
volume_encrypted: yes
block_device:
volume_size: 20
group: "elasticsearch"
os: jammy
count: 2

- server_name: "es_b3{i}-bk-production"
server_instance_type: t3a.xlarge
network_tier: "db-private"
az: "b"
volume_size: 20
volume_encrypted: yes
block_device:
volume_size: 20
group: "elasticsearch"
os: jammy
count: 2

- server_name: "couch_a0-bk-production"
server_instance_type: t3a.small
Expand Down
Loading