Skip to content

Commit

Permalink
chore: use all-lowercase tag names for Environment tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisdon committed Sep 30, 2024
1 parent 9760648 commit f843493
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/unreal/horde/examples/complete/dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ resource "aws_acm_certificate" "unreal_horde" {
validation_method = "DNS"

tags = {
Environment = "dev"
environment = "dev"
}

lifecycle {
Expand Down
2 changes: 1 addition & 1 deletion modules/unreal/horde/local.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions samples/horde-perforce/dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ resource "aws_acm_certificate" "unreal_engine_horde" {
validation_method = "DNS"

tags = {
Environment = "dev"
environment = "dev"
}

lifecycle {
Expand Down Expand Up @@ -171,7 +171,7 @@ resource "aws_acm_certificate" "helix" {
validation_method = "DNS"

tags = {
Environment = "dev"
environment = "dev"
}

lifecycle {
Expand Down

0 comments on commit f843493

Please sign in to comment.