Skip to content

Commit fea5b42

Browse files
Di 706 repoint active persons (#2368)
* Amend regex * Amend database and table names for ctax and hben to match new locations --------- Co-authored-by: Tian Chen <[email protected]>
1 parent c8ae27c commit fea5b42

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

terraform/etl/45-aws-glue-job-active-persons-records.tf

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@ module "active_persons_records_refined" {
2424
"--enable-glue-datacatalog" = "true"
2525
"--enable-continuous-cloudwatch-log" = "true"
2626
"--additional-python-modules" = "abydos,graphframes,great_expectations==0.15.48"
27-
"--source_catalog_database_housing_benefit" = module.department_benefits_and_housing_needs_data_source.raw_zone_catalog_database_name
27+
"--source_catalog_database_housing_benefit" = aws_glue_catalog_database.hben_raw_zone.name
2828
"--source_catalog_database_housing" = module.department_housing_data_source.refined_zone_catalog_database_name
2929
"--source_catalog_database_parking" = aws_glue_catalog_database.refined_zone_liberator.name
30-
"--source_catalog_database_council_tax" = module.department_revenues_data_source.raw_zone_catalog_database_name
30+
"--source_catalog_database_council_tax" = aws_glue_catalog_database.ctax_raw_zone.name
3131

3232
"--source_catalog_table_person_reshape" = "person_reshape"
3333
"--source_catalog_table_tenure_reshape" = "tenure_reshape"
3434
"--source_catalog_table_assets_reshape" = "assets_reshape"
35-
"--source_catalog_table_ctax_property" = "lbhaliverbviews_core_ctproperty"
36-
"--source_catalog_table_ctax_account" = "lbhaliverbviews_core_ctaccount"
37-
"--source_catalog_table_ctax_liability_person" = "lbhaliverbviews_core_ctliab_person"
38-
"--source_catalog_table_ctax_non_liability_person" = "lbhaliverbviews_core_ctnon_liab"
39-
"--source_catalog_table_ctax_occupation" = "lbhaliverbviews_core_ctoccupation"
40-
"--source_catalog_table_hb_member" = "lbhaliverbviews_core_hbmember"
41-
"--source_catalog_table_hb_ctax_assessment" = "lbhaliverbviews_core_hbctaxass"
42-
"--source_catalog_table_hb_household" = "lbhaliverbviews_core_hbhousehold"
43-
"--source_catalog_table_hb_rent_assessment" = "lbhaliverbviews_core_hbrentass"
35+
"--source_catalog_table_ctax_property" = "ctproperty"
36+
"--source_catalog_table_ctax_account" = "ctaccount"
37+
"--source_catalog_table_ctax_liability_person" = "ctliab_person"
38+
"--source_catalog_table_ctax_non_liability_person" = "ctnon_liab"
39+
"--source_catalog_table_ctax_occupation" = "ctoccupation"
40+
"--source_catalog_table_hb_member" = "hbmember"
41+
"--source_catalog_table_hb_ctax_assessment" = "hbctaxass"
42+
"--source_catalog_table_hb_household" = "hbhousehold"
43+
"--source_catalog_table_hb_rent_assessment" = "hbrentass"
4444
"--source_catalog_table_parking_permit" = "parking_permit_denormalised_data"
4545
"--output_path" = "s3://${module.refined_zone_data_source.bucket_id}/data-and-insight/active-person-records/"
4646

0 commit comments

Comments
 (0)