We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 582fd86 commit d185d72Copy full SHA for d185d72
testing/benchmark/main.tf
@@ -26,13 +26,14 @@ locals {
26
build = var.BUILD_ID
27
created_date = coalesce(var.CREATED_DATE, time_static.created_date.unix)
28
}
29
+ project = "apm-server-benchmarks"
30
31
32
module "tags" {
33
source = "../infra/terraform/modules/tags"
34
# use the convention for team/shared owned resources if we are running in CI.
35
# assume this is an individually owned resource otherwise.
- project = startswith(var.user_name, "benchci") ? "benchmarks" : var.user_name
36
+ project = startswith(var.user_name, "benchci") ? local.project : "${local.project}-${var.user_name}"
37
38
39
provider "ec" {}
0 commit comments