{"id":28465401,"url":"https://github.com/scribd/terraform-oxbow","last_synced_at":"2026-01-31T17:01:29.830Z","repository":{"id":283295599,"uuid":"731938579","full_name":"scribd/terraform-oxbow","owner":"scribd","description":"This repository contains oxbow terraform module","archived":false,"fork":false,"pushed_at":"2025-05-21T10:58:39.000Z","size":138,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":8,"default_branch":"main","last_synced_at":"2026-01-21T19:36:34.117Z","etag":null,"topics":["data-platform","managed-by-terraform","terraform-oxbow"],"latest_commit_sha":null,"homepage":"https://github.com/scribd/terraform-oxbow","language":"HCL","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scribd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-12-15T08:38:59.000Z","updated_at":"2026-01-10T14:33:40.000Z","dependencies_parsed_at":"2025-05-01T23:31:08.257Z","dependency_job_id":null,"html_url":"https://github.com/scribd/terraform-oxbow","commit_stats":null,"previous_names":["scribd/terraform-oxbow"],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/scribd/terraform-oxbow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scribd%2Fterraform-oxbow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scribd%2Fterraform-oxbow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scribd%2Fterraform-oxbow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scribd%2Fterraform-oxbow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scribd","download_url":"https://codeload.github.com/scribd/terraform-oxbow/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scribd%2Fterraform-oxbow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28948356,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T14:26:55.697Z","status":"ssl_error","status_checked_at":"2026-01-31T14:26:52.545Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-platform","managed-by-terraform","terraform-oxbow"],"created_at":"2025-06-07T05:30:36.727Z","updated_at":"2026-01-31T17:01:29.825Z","avatar_url":"https://github.com/scribd.png","language":"HCL","readme":"# terraform-oxbow\n*Terraform module to manage oxbow Lambda and its components.\nWe can have the following components in AWS:\n1. Lambda\n2. SQS \n3. SQS dead letters\n4. IAM policy\n5. S3 bucket notifications\n6. Dynamo DB table\n7. Glue catalog\n8. Glue table\n\n### examples:\nif we need Glue catalog and table\n```\nenable_aws_glue_catalog_table = true\n\n```\nif we need s3 bucket notification \n```\nenable_bucket_notification = true\n```\nif we need advanced Oxbow lambda setup for multiple table filtered optimization\n```\nenable_group_events = true\n```\n\nthis is a good start\n```\nmodule \"terraform-oxbow\" {\n  source = \"\"\n\n  enable_aws_glue_catalog_table           = true\n  enable_bucket_notification              = false\n\n\n  warehouse_bucket_arn  = \"\"\n  warehouse_bucket_name = \"\"\n\n  # bucket notification because of limits is configured in file s3_bucket_notification_configuration.tf\n\n  # the place where we store files\n  s3_path = \"\"\n  lambda_function_name            = \"\"\n  lambda_description              = \"\"\n  lambda_s3_key                   = \"\"\n  lambda_s3_bucket                = \"\"\n  lambda_reserved_concurrent_executions = 1\n  lambda_permissions_policy_name        = \"\"\n  rust_log_deltalake_debug_level        = \"debug\"\n  rust_log_oxbow_debug_level            = \"debug\"\n\n  sqs_queue_name      = \"${var.env}--queue\"\n  sqs_queue_name_dl   = \"${var.env}--queue-dl\"\n  dynamodb_table_name = \"${var.env}-oxbow-lock\"\n  glue_database_name     = \"\"\n  glue_table_name        = \"\"\n  glue_location_uri      = \"\"\n  glue_table_description = \"\"\n  aws_s3_locking_provider = \"dynamodb\"\n\n  enabled_dead_letters_monitoring = true\n  dl_alert_recipients             = [\"@slack-chanel\"]\n  dl_warning                      = 1\n  dl_critical                     = 2\n  tags_monitoring                 = [\"slack-chanel\", \"env:${var.env}\", \"service:${var.env}-project-name\"]\n\n  tags = merge({ project = \"project_name\" }, module.warehouse_labels.tags)\n}\n```\n\n\n\n### Important to know:\nDue to Terraform AWS S3 bucket notifications limitation we can have just one S3 bucket notification configuration per AWS account.\n`\nS3 Buckets only support a single notification configuration. Declaring multiple aws_s3_bucket_notification resources to the same S3 Bucket will cause a perpetual difference in configuration. See the example \"Trigger multiple Lambda functions\" for an option.\n`\nhttps://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_notification\n##\nMade with ❤️ by the Platform Infra Team.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscribd%2Fterraform-oxbow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscribd%2Fterraform-oxbow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscribd%2Fterraform-oxbow/lists"}