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 3d652ac
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion modules/perforce/helix-authentication-service/local.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ locals {
name_prefix = "${var.project_prefix}-${var.name}"

tags = merge(var.tags, {
"ENVIRONMENT" = var.environment
"environment" = var.environment
})
}
2 changes: 1 addition & 1 deletion modules/perforce/helix-core/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down
2 changes: 1 addition & 1 deletion modules/perforce/helix-swarm/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ locals {
helix_swarm_redis_data_path = "/data"

tags = merge(var.tags, {
"ENVIRONMENT" = var.environment
"environment" = var.environment
})
}
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 3d652ac

Please sign in to comment.