Skip to content

Commit 09ecfac

Browse files
table prefix
1 parent 1290160 commit 09ecfac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

infrastructure/terraform/components/api/glue_crawler_event_crawler.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
resource "aws_glue_crawler" "event_crawler" {
2-
count = local.event_cache_bucket_name != null ? 1 : 0
2+
count = local.event_cache_bucket_name != null ? 1 : 0
33
name = "event-crawler-${aws_glue_catalog_table.events.name}"
44
database_name = aws_glue_catalog_database.supplier.name
55
role = aws_iam_role.glue_role.arn
66

7-
table_prefix = ""
7+
table_prefix = "events_"
88
s3_target {
99
path = "s3://${local.csi_global}-eventcache/"
1010
}

0 commit comments

Comments
 (0)