We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 775a548 commit 43acb08Copy full SHA for 43acb08
modules/multi-runner/runner-binaries.tf
@@ -4,7 +4,8 @@ module "runner_binaries" {
4
prefix = "${var.prefix}-${each.value.os_type}-${each.value.architecture}"
5
tags = local.tags
6
7
- distribution_bucket_name = "${var.prefix}-${each.value.os_type}-${each.value.architecture}-dist-${random_string.random.result}"
+ # force mandatory lower case for s3 bucketname
8
+ distribution_bucket_name = lower("${var.prefix}-${each.value.os_type}-${each.value.architecture}-dist-${random_string.random.result}")
9
10
runner_os = each.value.os_type
11
runner_architecture = each.value.architecture
0 commit comments