{"id":31904178,"url":"https://github.com/cloudfoundry-community/rds-broker","last_synced_at":"2026-03-17T18:38:41.839Z","repository":{"id":29953550,"uuid":"33500178","full_name":"cloudfoundry-community/rds-broker","owner":"cloudfoundry-community","description":"Cloud Foundry AWS RDS Service Broker","archived":false,"fork":false,"pushed_at":"2022-11-04T18:29:22.000Z","size":2118,"stargazers_count":18,"open_issues_count":4,"forks_count":6,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-10-21T17:43:14.121Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudfoundry-community.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-04-06T19:11:59.000Z","updated_at":"2024-11-27T13:57:24.000Z","dependencies_parsed_at":"2023-01-14T15:59:26.969Z","dependency_job_id":null,"html_url":"https://github.com/cloudfoundry-community/rds-broker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cloudfoundry-community/rds-broker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Frds-broker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Frds-broker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Frds-broker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Frds-broker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudfoundry-community","download_url":"https://codeload.github.com/cloudfoundry-community/rds-broker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Frds-broker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30628443,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T17:32:55.572Z","status":"ssl_error","status_checked_at":"2026-03-17T17:32:38.732Z","response_time":56,"last_error":"SSL_read: 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":[],"created_at":"2025-10-13T13:47:53.955Z","updated_at":"2026-03-17T18:38:41.810Z","avatar_url":"https://github.com/cloudfoundry-community.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Cloud Foundry RDS Service Broker\n\n[![wercker status](https://app.wercker.com/status/9fd96a3ace53c3936c0111d34a1d889c/m \"wercker status\")](https://app.wercker.com/project/bykey/9fd96a3ace53c3936c0111d34a1d889c)\n\nCloud Foundry Service Broker to manage RDS instances and a shared RDS Database.\n\n### Setup\nThere are important environment variables that should be overriden inside the `manifest.yml` file\n\n\u003e Note: All environment variables prefixed with `DB_` refer to attributes for the database the broker itself will use for internal uses.\n\n1. `DB_URL`: The hostname / IP address of the database.\n1. `DB_PORT`: The port number to access the database.\n1. `DB_NAME`: The database name.\n1. `DB_USER`: Username to access the database.\n1. `DB_PASS`: Password to access the database.\n1. `DB_TYPE`: The type of database. Currently supported types: `postgres` and `sqlite3`.\n1. `DB_SSLMODE`: The type of SSL Mode to use when connecting to the database. Supported modes: `disabled`, `require` and `verify-ca`.\n1. `AWS_ACCESS_KEY_ID`: The id credential with access to make requests to the Amazon RDS .\n1. `AWS_SECRET_ACCESS_KEY`: The secret key (treat like a password) credential to access Amazon RDS.\n1. `INSTANCE_TAGS`: Tags for the RDS instances.\n1. `AWS_SEC_GROUP`: The security group for the RDS instances (`sg-xxxx`).\n1. `AWS_DB_SUBNET_GROUP`: The name of DB subnet group for the RDS instances.\n\n\u003e Note the AWS Environment Variables should be generated by following the instructions [here](http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSGettingStartedGuide/AWSCredentials.html)\n\n\u003e Make sure the account has write access to RDS and EC2 (particularly for VPC and Subnet).\n\n\u003e Example of permissions that suffice: `AmazonRDSFullAccess` and `AmazonEC2FullAccess`\n\n### How to deploy it\n\n1. `cf push`\n1. `cf create-service-broker SERVICE-NAME USER PASS https://BROKER-URL`\n1. `cf enable-service-access rds`\n\n\n### How to use it\n\nTo use the service you need to create a service instance and bind it:\n\n1. `cf create-service rds shared-psql MYDB`\n1. `cf bind-service APP MYDB`\n\nWhen you do that you will have all the credentials in the \n`VCAP_SERVICES` environment variable with the JSON key `rds`.\n\nAlso, you will have a `DATABASE_URL` environment variable that will\nbe the connection string to the DB.\n\n### Public domain\n\nThis project is in the worldwide [public domain](LICENSE.md). As stated in [CONTRIBUTING](CONTRIBUTING.md):\n\n\u003e This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the [CC0 1.0 Universal public domain dedication](https://creativecommons.org/publicdomain/zero/1.0/).\n\u003e\n\u003e All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudfoundry-community%2Frds-broker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudfoundry-community%2Frds-broker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudfoundry-community%2Frds-broker/lists"}