Skip to content

Commit

Permalink
tf: larger default volume size if TBS is enabled (#15404)
Browse files Browse the repository at this point in the history
Use a larger volume size if standalone apm server has TBS enabled.

(cherry picked from commit 8aac9e3)
  • Loading branch information
carsonip authored and mergify[bot] committed Jan 27, 2025
1 parent 25e7389 commit d1e8018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/benchmark/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ module "standalone_apm_server" {
aws_os = "amzn2-ami-hvm-*-x86_64-ebs"
apm_instance_type = var.standalone_apm_server_instance_size
apm_volume_type = var.standalone_apm_server_volume_type
apm_volume_size = var.standalone_apm_server_volume_size
apm_volume_size = var.apm_server_tail_sampling ? coalesce(var.standalone_apm_server_volume_size, 60) : var.standalone_apm_server_volume_size
apm_server_bin_path = var.apm_server_bin_path
ea_managed = false

Expand Down

0 comments on commit d1e8018

Please sign in to comment.