Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit b75010e

Browse files
fix(syncer): lowercase distribution_bucket_name (#3194)
refactor: lowercase distribution_bucket_name Prefix may contain uppercase characters that will break the distribution bucket name validation
1 parent b8ff326 commit b75010e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ module "runner_binaries" {
282282
prefix = var.prefix
283283
tags = local.tags
284284

285-
distribution_bucket_name = "${var.prefix}-dist-${random_string.random.result}"
285+
distribution_bucket_name = lower("${var.prefix}-dist-${random_string.random.result}")
286286
s3_logging_bucket = var.runner_binaries_s3_logging_bucket
287287
s3_logging_bucket_prefix = var.runner_binaries_s3_logging_bucket_prefix
288288

0 commit comments

Comments
 (0)