Skip to content

Commit

Permalink
add new module for mdss (#9276)
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-a-williams authored Jan 10, 2025
1 parent 24e3538 commit 8ec5860
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,3 +215,19 @@ module "load_fms" {
athena_dump_bucket = module.s3-athena-bucket.bucket
cadt_bucket = module.s3-create-a-derived-table-bucket.bucket
}


module "load_mdss" {
count = local.is-test || local.is-production ? 1 : 0
source = "./modules/ap_airflow_load_data_iam_role"

name = "mdss"
environment = local.environment
database_name = "allied-mdss"
path_to_data = "/allied/mdss"
source_data_bucket = module.s3-raw-formatted-data-bucket.bucket
secret_code = jsondecode(data.aws_secretsmanager_secret_version.airflow_secret.secret_string)["oidc_cluster_identifier"]
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
}

0 comments on commit 8ec5860

Please sign in to comment.