Skip to content

Commit

Permalink
Increase MSK storage to 2000GiB in production environments
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-Li committed May 20, 2024
1 parent 207ed4b commit 8b54c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indexer/msk.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ resource "aws_msk_cluster" "main" {
instance_type = var.msk_instance_type
storage_info {
ebs_storage_info {
volume_size = 1000 # in GB
volume_size = var.environment == "mainnet" ? 2000 : 1000 # in GB
}
}
client_subnets = [
Expand Down

0 comments on commit 8b54c32

Please sign in to comment.