From 43d0ff5374e186b017edc0d8795bc90423a6d599 Mon Sep 17 00:00:00 2001 From: Matthew Creal Morgan Date: Wed, 18 Mar 2026 12:33:24 -0700 Subject: [PATCH] remove tags due to collision (#17) --- README.md | 2 +- main.tf | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 3d85b17..a3fce76 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Developer NOTE: We should automate this configuration. | Name | Source | Version | |------|--------|---------| -| [images](#module\_images) | git::https://github.e.it.census.gov/terraform-modules/aws-ecr-copy-images.git/ | tf-upgrade | +| [images](#module\_images) | git::https://github.e.it.census.gov/terraform-modules/aws-ecr-copy-images.git | tf-upgrade | | [tempo-irsa-role](#module\_tempo-irsa-role) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-custom-iam-role-for-service-account-eks.git/ | 1.0.1 | | [tempo\_s3](#module\_tempo\_s3) | git::https://github.e.it.census.gov/terraform-modules/aws-s3.git//standard | tf-upgrade | diff --git a/main.tf b/main.tf index b821ce8..8c538f4 100644 --- a/main.tf +++ b/main.tf @@ -1,6 +1,5 @@ locals { oidc_arn = var.oidc_provider_arn - tags = var.tags tempo_internal_hostname = format("tempo.%v.svc.cluster.local", var.namespace) tempo_internal_port_number = 3100 @@ -34,7 +33,6 @@ module "tempo-irsa-role" { namespace_service_accounts = ["${var.namespace}:tempo"] } } - tags = local.tags } ################################################################################