Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
carsonip committed Jan 27, 2025
1 parent 5b23349 commit 5a4b8d2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions testing/benchmark/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +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.apm_server_tail_sampling ?
(var.standalone_apm_server_volume_size==null ? 60 : var.standalone_apm_server_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 5a4b8d2

Please sign in to comment.