We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 214a5b1 + 1a97769 commit 9b2a0abCopy full SHA for 9b2a0ab
deployments/stacks/dpe-k8s/main.tf
@@ -57,3 +57,15 @@ module "synapse_dataset_to_crossiant_metadata" {
57
enable_cors = true
58
}
59
60
+module "synapse_data_catalog_minimal_jsonld" {
61
+ # This points to the prod cluster - The only location where we want to create the bucket
62
+ count = var.cluster_name == "dpe-k8" ? 1 : 0
63
+ source = "../../../modules/s3-bucket"
64
+ bucket_name = "synapse-croissant-metadata-minimal"
65
+ enable_versioning = true
66
+ aws_account_id = var.aws_account_id
67
+ cluster_name = var.cluster_name
68
+ cluster_oidc_provider_arn = module.sage-aws-eks.cluster_oidc_provider_arn
69
+ public_access = true
70
+ enable_cors = true
71
+}
0 commit comments