Skip to content

Commit 656ce2f

Browse files
authored
fix(cloud-logs): syntax error being addressed (#73)
1 parent 2690fcf commit 656ce2f

File tree

1 file changed

+3
-1
lines changed
  • modules/integrations/cloud-logs

1 file changed

+3
-1
lines changed

modules/integrations/cloud-logs/main.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ resource "aws_iam_role" "cloudlogs_s3_access" {
114114

115115
lifecycle {
116116
precondition {
117-
condition = var.role_arn == null || split(":", var.role_arn)[4] == local.bucket_account_id
117+
condition = var.role_arn == null || split(":", var.role_arn)[4] == local.bucket_account_id
118+
}
119+
}
118120
}
119121

120122
// AWS IAM Role Policy

0 commit comments

Comments
 (0)