Skip to content

Commit

Permalink
Add cache storage module to s3.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Aug 25, 2024
1 parent 515c201 commit 5ccdf21
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions s3.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ locals {
thanos_storage_name = "xquare-thanos"
loki_storage_name = "xquare-loki"
tempo_storage_name = "xquare-tempo"
cache_storage_name = "xquare-cache"
}

#module "prod_storage" {
Expand Down Expand Up @@ -40,3 +41,10 @@ module "tempo_storage" {
bucket_name = local.tempo_storage_name
is_public = false
}

module "cache_storage" {
source = "./modules/s3"

bucket_name = local.cache_storage_name
is_public = false
}

0 comments on commit 5ccdf21

Please sign in to comment.