Skip to content

Commit

Permalink
[terraform] [services] Change opensearch to t3.small
Browse files Browse the repository at this point in the history
Summary:
Changes instance size from medium to small to save on costs while opensearch instance isn't under heavy use.
This is the smallest available size as t3.micro isn't available in us-east-2.

Test Plan: terraform plan and fmt

Reviewers: varun, bartek

Reviewed By: varun

Subscribers: ashoat, tomek

Differential Revision: https://phab.comm.dev/D10656
  • Loading branch information
wyilio committed Jan 17, 2024
1 parent 593eaf3 commit a10f546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/terraform/modules/shared/opensearch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "aws_opensearch_domain" "identity-search" {
engine_version = "OpenSearch_1.0"

cluster_config {
instance_type = "t3.medium.search"
instance_type = "t3.small.search"
}

vpc_options {
Expand Down

0 comments on commit a10f546

Please sign in to comment.