Update visualize icons and fix scaleway bucket naming

This commit is contained in:
Tobias Reisinger 2025-04-16 14:49:29 +02:00
parent 1cfe1721a8
commit 4f1ab2ed7a
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
2 changed files with 4 additions and 4 deletions
modules/infrastructure

View file

@ -28,7 +28,7 @@ resource "scaleway_iam_policy" "service_storage_policies" {
resource "scaleway_object_bucket" "service_buckets" {
for_each = local.buckets_s3
name = "${each.key}.serguzim.me"
name = replace("${each.key}.serguzim.me", "_", "-")
lifecycle {
prevent_destroy = true
}