Skip to content

Commit

Permalink
fix refs to tempo_s3
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Apr 1, 2025
1 parent 68f7cc3 commit a7f6b31
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ module "tempo-irsa-role" {
attach_encrypted_object_manager_policy = true

s3_bucket_arns = [
module.tempo-s3.s3_bucket_arn,
"${module.tempo-s3.s3_bucket_arn}/*",
module.tempo_s3.s3_bucket_arn,
"${module.tempo_s3.s3_bucket_arn}/*",
]
kms_key_arns = [
module.tempo-s3.kms_key_arn
module.tempo_s3.kms_key_arn
]

oidc_providers = {
Expand Down Expand Up @@ -68,7 +68,7 @@ resource "helm_release" "tempo" {
}
set {
name = "tempo.storage.trace.s3.bucket"
value = module.tempo-s3.s3_bucket_id
value = module.tempo_s3.s3_bucket_id
}
set {
name = "tempo.storage.trace.s3.endpoint"
Expand Down

0 comments on commit a7f6b31

Please sign in to comment.