We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1290160 commit 09ecfacCopy full SHA for 09ecfac
1 file changed
infrastructure/terraform/components/api/glue_crawler_event_crawler.tf
@@ -1,10 +1,10 @@
1
resource "aws_glue_crawler" "event_crawler" {
2
- count = local.event_cache_bucket_name != null ? 1 : 0
+ count = local.event_cache_bucket_name != null ? 1 : 0
3
name = "event-crawler-${aws_glue_catalog_table.events.name}"
4
database_name = aws_glue_catalog_database.supplier.name
5
role = aws_iam_role.glue_role.arn
6
7
- table_prefix = ""
+ table_prefix = "events_"
8
s3_target {
9
path = "s3://${local.csi_global}-eventcache/"
10
}
0 commit comments