Skip to content

Commit

Permalink
[Issue #2600] fix availability zone count variable (#2807)
Browse files Browse the repository at this point in the history
## Summary

Contributes to #2600

### Time to review: __0.1 mins__

## Context for reviewers


https://github.com/HHS/simpler-grants-gov/actions/runs/11802929736/job/32879723263#step:5:143
  • Loading branch information
coilysiren authored Nov 12, 2024
1 parent c4aa020 commit 88cb722
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions infra/api/app-config/env-config/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
output "search_config" {
value = var.has_search ? {
instance_type = var.search_data_instance_type
instance_count = var.search_data_instance_count
dedicated_master_type = var.search_master_instance_type
engine_version = var.search_engine_version
volume_size = var.search_data_volume_size
search_availability_zone_count = var.search_availability_zone_count
instance_type = var.search_data_instance_type
instance_count = var.search_data_instance_count
dedicated_master_type = var.search_master_instance_type
engine_version = var.search_engine_version
volume_size = var.search_data_volume_size
availability_zone_count = var.search_availability_zone_count
} : null
}

Expand Down

0 comments on commit 88cb722

Please sign in to comment.