Skip to content

Commit 2317c56

Browse files
authored
fix: Remove wrapping list brackets from S3 bucket ARNs variable (#9)
1 parent 2fca2bb commit 2317c56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/studio/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ data "aws_iam_policy_document" "service" {
291291
"s3:DeleteObject",
292292
]
293293
resources = coalescelist(
294-
[var.service_role_s3_bucket_arns],
294+
var.service_role_s3_bucket_arns,
295295
["arn:${local.partition}:s3:::*"]
296296
)
297297
}

0 commit comments

Comments
 (0)