diff --git a/deployments/stacks/dpe-k8s/main.tf b/deployments/stacks/dpe-k8s/main.tf index c4a387d5..ffc3f3df 100644 --- a/deployments/stacks/dpe-k8s/main.tf +++ b/deployments/stacks/dpe-k8s/main.tf @@ -57,3 +57,15 @@ module "synapse_dataset_to_crossiant_metadata" { enable_cors = true } +module "synapse_data_catalog_minimal_jsonld" { + # This points to the prod cluster - The only location where we want to create the bucket + count = var.cluster_name == "dpe-k8" ? 1 : 0 + source = "../../../modules/s3-bucket" + bucket_name = "synapse-croissant-metadata-minimal" + enable_versioning = true + aws_account_id = var.aws_account_id + cluster_name = var.cluster_name + cluster_oidc_provider_arn = module.sage-aws-eks.cluster_oidc_provider_arn + public_access = true + enable_cors = true +}