From c7a8250d674402d66d26a2cb591199e2211970a1 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Fri, 9 Aug 2024 10:45:12 +0200 Subject: [PATCH] tf: use singular var --- testing/benchmarking/main.tf | 2 +- testing/smoketest/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/benchmarking/main.tf b/testing/benchmarking/main.tf index 9cb05511..eb8a5dab 100644 --- a/testing/benchmarking/main.tf +++ b/testing/benchmarking/main.tf @@ -49,7 +49,7 @@ provider "aws" { module "tags" { source = "github.com/elastic/apm-server//testing/infra/terraform/modules/tags?depth=1" project = "lambda-extension-benchmarks" - build = vars.github_workflow_id + build = var.github_workflow_id } module "ec_deployment" { diff --git a/testing/smoketest/main.tf b/testing/smoketest/main.tf index 3209fe29..bac8653b 100644 --- a/testing/smoketest/main.tf +++ b/testing/smoketest/main.tf @@ -8,7 +8,7 @@ provider "aws" { module "tags" { source = "github.com/elastic/apm-server//testing/infra/terraform/modules/tags?depth=1" project = local.user_name - build = vars.github_workflow_id + build = var.github_workflow_id } module "ec_deployment" {