Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions deployments/stacks/dpe-k8s/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}