Skip to content

Commit

Permalink
add versions tf and remove database from name of policy
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-heery committed Jan 15, 2025
1 parent 8104395 commit ea47cbd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ module "load_unstructured_atrium_database" {
data_bucket_lf_resource = aws_lakeformation_resource.data_bucket.arn
de_role_arn = try(one(data.aws_iam_roles.data_engineering_roles.arns))

name = "unstructured-atrium-database"
name = "unstructured-atrium"
environment = local.environment
database_name = "g4s-atrium-unstructured"
path_to_data = "/load/g4s_atrium_unstructured/structure"
Expand Down Expand Up @@ -272,4 +272,4 @@ module "load_mdss" {
oidc_arn = aws_iam_openid_connect_provider.analytical_platform_compute.arn
athena_dump_bucket = module.s3-athena-bucket.bucket
cadt_bucket = module.s3-create-a-derived-table-bucket.bucket
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
}
}
required_version = ">= 1.0.1"
}

0 comments on commit ea47cbd

Please sign in to comment.