Skip to content

Commit

Permalink
rename databases to table versions
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-heery committed Jan 7, 2025
1 parent 775a481 commit 91489ee
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module "cap_dw_excluding_specials" {
(each.key) = "specials_flag=0"
}
role_arn = module.cmt_front_end_assumable_role.iam_role_arn
database_name = "historic_api_mart_historic_dev_dbt"
database_name = "historic_api_mart_tables_historic_dev_dbt"
data_engineer_role_arn = try(one(data.aws_iam_roles.data_engineering_roles.arns))
data_bucket_lf_resource = aws_lakeformation_resource.data_bucket.arn
}
Expand All @@ -39,7 +39,7 @@ module "cap_dw_including_specials" {
(each.key) = ""
}
role_arn = module.specials_cmt_front_end_assumable_role.iam_role_arn
database_name = "historic_api_mart_historic_dev_dbt"
database_name = "historic_api_mart_tables_historic_dev_dbt"
data_engineer_role_arn = try(one(data.aws_iam_roles.data_engineering_roles.arns))
data_bucket_lf_resource = aws_lakeformation_resource.data_bucket.arn
}
Expand All @@ -51,7 +51,7 @@ module "am_for_non_specials_role" {
(each.key) = ""
}
role_arn = module.cmt_front_end_assumable_role.iam_role_arn
database_name = "historic_api_mart_historic_dev_dbt"
database_name = "historic_api_mart_tables_historic_dev_dbt"
data_engineer_role_arn = try(one(data.aws_iam_roles.data_engineering_roles.arns))
data_bucket_lf_resource = aws_lakeformation_resource.data_bucket.arn
}
Expand All @@ -63,7 +63,7 @@ module "am_for_specials_role" {
(each.key) = ""
}
role_arn = module.specials_cmt_front_end_assumable_role.iam_role_arn
database_name = "historic_api_mart_historic_dev_dbt"
database_name = "historic_api_mart_tables_historic_dev_dbt"
data_engineer_role_arn = try(one(data.aws_iam_roles.data_engineering_roles.arns))
data_bucket_lf_resource = aws_lakeformation_resource.data_bucket.arn
}

0 comments on commit 91489ee

Please sign in to comment.