Skip to content

Commit 2187c84

Browse files
committed
Add a prefix to table in raw zone
1 parent d4ff5fd commit 2187c84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

terraform/etl/49-lambda-gov-notify-ingestion-housing-lbh-communal-repairs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ resource "aws_glue_crawler" "govnotify_housing_lbh_communal_repairs_landing_zone
9696
name = "${local.short_identifier_prefix}GovNotify Housing LBH Communal Repairs Landing Zone ${each.value}"
9797
role = data.aws_iam_role.glue_role.arn
9898
tags = module.tags.values
99-
table_prefix = "housing_lbh_communal_repairs_${each.value}_"
99+
table_prefix = "housing_lbh_communal_repairs_${each.value}"
100100

101101
s3_target {
102102
path = "s3://${module.landing_zone_data_source.bucket_id}/housing/govnotify/lbh_communal_repairs/${each.value}/"
@@ -116,7 +116,7 @@ resource "aws_glue_crawler" "govnotify_housing_lbh_communal_repairs_raw_zone" {
116116
name = "${local.short_identifier_prefix}GovNotify Housing LBH Communal Repairs Raw Zone ${each.value}"
117117
role = data.aws_iam_role.glue_role.arn
118118
tags = module.tags.values
119-
table_prefix = null
119+
table_prefix = "housing_lbh_communal_repairs_${each.value}_"
120120

121121
s3_target {
122122
path = "s3://${module.raw_zone_data_source.bucket_id}/housing/govnotify/lbh_communal_repairs/${each.value}/"

0 commit comments

Comments
 (0)