From 3d652ac144c7a5e0b7c8c70297f4e6db7c939f70 Mon Sep 17 00:00:00 2001 From: Joris van de Donk Date: Mon, 30 Sep 2024 21:30:53 +0200 Subject: [PATCH] chore: use all-lowercase tag names for Environment tags --- modules/perforce/helix-authentication-service/local.tf | 2 +- modules/perforce/helix-core/locals.tf | 2 +- modules/perforce/helix-swarm/locals.tf | 2 +- modules/unreal/horde/examples/complete/dns.tf | 2 +- modules/unreal/horde/local.tf | 2 +- samples/horde-perforce/dns.tf | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/perforce/helix-authentication-service/local.tf b/modules/perforce/helix-authentication-service/local.tf index e5b9e859..bcdf8179 100644 --- a/modules/perforce/helix-authentication-service/local.tf +++ b/modules/perforce/helix-authentication-service/local.tf @@ -3,6 +3,6 @@ locals { name_prefix = "${var.project_prefix}-${var.name}" tags = merge(var.tags, { - "ENVIRONMENT" = var.environment + "environment" = var.environment }) } diff --git a/modules/perforce/helix-core/locals.tf b/modules/perforce/helix-core/locals.tf index ad7fd55b..eee2d35e 100644 --- a/modules/perforce/helix-core/locals.tf +++ b/modules/perforce/helix-core/locals.tf @@ -3,7 +3,7 @@ locals { helix_core_az = data.aws_subnet.instance_subnet.availability_zone tags = merge( { - "ENVIRONMENT" = var.environment + "environment" = var.environment }, var.tags, ) diff --git a/modules/perforce/helix-swarm/locals.tf b/modules/perforce/helix-swarm/locals.tf index c9e58147..4dde5238 100644 --- a/modules/perforce/helix-swarm/locals.tf +++ b/modules/perforce/helix-swarm/locals.tf @@ -5,6 +5,6 @@ locals { helix_swarm_redis_data_path = "/data" tags = merge(var.tags, { - "ENVIRONMENT" = var.environment + "environment" = var.environment }) } diff --git a/modules/unreal/horde/examples/complete/dns.tf b/modules/unreal/horde/examples/complete/dns.tf index e2114f54..4400c89c 100644 --- a/modules/unreal/horde/examples/complete/dns.tf +++ b/modules/unreal/horde/examples/complete/dns.tf @@ -45,7 +45,7 @@ resource "aws_acm_certificate" "unreal_horde" { validation_method = "DNS" tags = { - Environment = "dev" + environment = "dev" } lifecycle { diff --git a/modules/unreal/horde/local.tf b/modules/unreal/horde/local.tf index 759348f9..a0bedb21 100644 --- a/modules/unreal/horde/local.tf +++ b/modules/unreal/horde/local.tf @@ -11,7 +11,7 @@ locals { image = "ghcr.io/epicgames/horde-server:latest-bundled" name_prefix = "${var.project_prefix}-${var.name}" tags = merge(var.tags, { - "ENVIRONMENT" = var.environment + "environment" = var.environment }) elasticache_redis_port = 6379 diff --git a/samples/horde-perforce/dns.tf b/samples/horde-perforce/dns.tf index a97caf74..f8ed1a76 100644 --- a/samples/horde-perforce/dns.tf +++ b/samples/horde-perforce/dns.tf @@ -128,7 +128,7 @@ resource "aws_acm_certificate" "unreal_engine_horde" { validation_method = "DNS" tags = { - Environment = "dev" + environment = "dev" } lifecycle { @@ -171,7 +171,7 @@ resource "aws_acm_certificate" "helix" { validation_method = "DNS" tags = { - Environment = "dev" + environment = "dev" } lifecycle {