소스 검색

Fixes a missing $ resulting in incorrect object names

Fred Damstra 5 년 전
부모
커밋
f3fc0f9781
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      thirdparty/terraform-aws-s3logging-bucket/main.tf

+ 1 - 1
thirdparty/terraform-aws-s3logging-bucket/main.tf

@@ -63,7 +63,7 @@ resource "aws_s3_bucket" "this" {
   # which creates a log which leads to splunk accessing the s3 bucket)
   logging {
     target_bucket = local.bucket_name
-    target_prefix = "{data.aws_caller_identity.current.account_id}-${data.aws_region.current.name}-${local.bucket_name}"
+    target_prefix = "${data.aws_caller_identity.current.account_id}-${data.aws_region.current.name}-${local.bucket_name}"
   }
 
 }