Skip to content

Commit

Permalink
[no ticket] fix opensearch variable typo (#2608)
Browse files Browse the repository at this point in the history
## Context

Found this while deploying opensearch to prod
  • Loading branch information
coilysiren authored Oct 28, 2024
1 parent a95fefe commit c7ed50d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/api/app-config/env-config/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
output "search_config" {
value = var.has_search ? {
instance_type = var.search_master_instance_type
instance_type = var.search_data_instance_type
instance_count = var.search_data_instance_count
dedicated_master_type = var.search_data_instance_type
dedicated_master_type = var.search_master_instance_type
engine_version = var.search_engine_version
volume_size = var.search_data_volume_size
} : null
Expand Down

0 comments on commit c7ed50d

Please sign in to comment.