{"id":24435360,"url":"https://github.com/young-ook/terraform-aws-aurora","last_synced_at":"2026-02-06T20:31:55.371Z","repository":{"id":37016534,"uuid":"166145235","full_name":"Young-ook/terraform-aws-aurora","owner":"Young-ook","description":"Terraform Module: Amazon Aurora","archived":false,"fork":false,"pushed_at":"2024-01-31T02:00:39.000Z","size":879,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-30T03:59:37.009Z","etag":null,"topics":["aws","mysql","postgresql","terraform"],"latest_commit_sha":null,"homepage":"","language":"HCL","has_issues":true,"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/Young-ook.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-17T02:20:42.000Z","updated_at":"2023-01-17T17:16:34.000Z","dependencies_parsed_at":"2025-03-18T20:46:08.659Z","dependency_job_id":null,"html_url":"https://github.com/Young-ook/terraform-aws-aurora","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/Young-ook/terraform-aws-aurora","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Young-ook%2Fterraform-aws-aurora","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Young-ook%2Fterraform-aws-aurora/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Young-ook%2Fterraform-aws-aurora/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Young-ook%2Fterraform-aws-aurora/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Young-ook","download_url":"https://codeload.github.com/Young-ook/terraform-aws-aurora/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Young-ook%2Fterraform-aws-aurora/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29175223,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T20:14:21.878Z","status":"ssl_error","status_checked_at":"2026-02-06T20:14:21.443Z","response_time":59,"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":["aws","mysql","postgresql","terraform"],"created_at":"2025-01-20T17:19:29.467Z","updated_at":"2026-02-06T20:31:55.356Z","avatar_url":"https://github.com/Young-ook.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Amazon Aurora\n[Amazon Aurora](https://aws.amazon.com/rds/aurora/) is a MySQL and PostgreSQL-compatible relational database built for the cloud, that combines the performance and availability of traditional enterprise databases with the simplicity and cost-effectiveness of open source databases. This module will create an Amazon Aurora Cluster on AWS.\n\n![rds-vs-aurora-architecture-comparison](images/rds-vs-aurora-architecture-comparison.png)\n\n## Examples\n- [Amazon RDS Blueprint](https://github.com/Young-ook/terraform-aws-aurora/tree/main/examples/blueprint)\n- [Analytics on AWS](https://github.com/Young-ook/terraform-aws-emr/tree/main/examples/blueprint)\n- [AWS FIS Blueprint (Chaos Engineering)](https://github.com/Young-ook/terraform-aws-fis/blob/main/examples/blueprint)\n\n## Getting started\n### AWS CLI\nFollow the official guide to install and configure profiles.\n- [AWS CLI Installation](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html)\n- [AWS CLI Configuration](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html)\n\nAfter the installation is complete, you can check the aws cli version:\n```\naws --version\naws-cli/2.5.8 Python/3.9.11 Darwin/21.4.0 exe/x86_64 prompt/off\n```\n\n### Terraform\nTerraform is an open-source infrastructure as code software tool that enables you to safely and predictably create, change, and improve infrastructure.\n\n#### Install\nThis is the official guide for terraform binary installation. Please visit this [Install Terraform](https://learn.hashicorp.com/tutorials/terraform/install-cli) website and follow the instructions.\n\nOr, you can manually get a specific version of terraform binary from the websiate. Move to the [Downloads](https://www.terraform.io/downloads.html) page and look for the appropriate package for your system. Download the selected zip archive package. Unzip and install terraform by navigating to a directory included in your system's `PATH`.\n\nOr, you can use [tfenv](https://github.com/tfutils/tfenv) utility. It is very useful and easy solution to install and switch the multiple versions of terraform-cli.\n\nFirst, install tfenv using brew.\n```\nbrew install tfenv\n```\nThen, you can use tfenv in your workspace like below.\n```\ntfenv install \u003cversion\u003e\ntfenv use \u003cversion\u003e\n```\nAlso this tool is helpful to upgrade terraform v0.12. It is a major release focused on configuration language improvements and thus includes some changes that you'll need to consider when upgrading. But the version 0.11 and 0.12 are very different. So if some codes are written in older version and others are in 0.12 it would be great for us to have nice tool to support quick switching of version.\n```\ntfenv list\ntfenv install latest\ntfenv use \u003cversion\u003e\n```\n\n### Setup\n```\nmodule \"aurora\" {\n  source  = \"Young-ook/aurora/aws\"\n  name    = \"aurora\"\n  tags    = { env = \"test\" }\n}\n```\n\nRun terraform:\n```\nterraform init\nterraform apply\n```\n\n# Additional Resources\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoung-ook%2Fterraform-aws-aurora","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyoung-ook%2Fterraform-aws-aurora","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoung-ook%2Fterraform-aws-aurora/lists"}