Skip to content

Commit

Permalink
benchmarks: chopm apm_secret_token (#15338)
Browse files Browse the repository at this point in the history
Chomp new line chars from the secret token file content introduced in #15218.
  • Loading branch information
1pkg authored Jan 23, 2025
1 parent e3dd077 commit 9d457a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/infra/terraform/modules/ec_deployment/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ output "apm_url" {
}

output "apm_secret_token" {
value = var.integrations_server ? data.local_sensitive_file.secret_token.content : ec_deployment.deployment.apm_secret_token
value = var.integrations_server ? chomp(data.local_sensitive_file.secret_token.content) : ec_deployment.deployment.apm_secret_token
sensitive = true
description = "The APM Secret token"
}
Expand Down

0 comments on commit 9d457a5

Please sign in to comment.