{"id":13505675,"url":"https://github.com/terraform-aws-modules/terraform-aws-route53","last_synced_at":"2025-05-16T03:06:35.075Z","repository":{"id":37011431,"uuid":"273070711","full_name":"terraform-aws-modules/terraform-aws-route53","owner":"terraform-aws-modules","description":"Terraform module to create AWS Route53 resources 🇺🇦","archived":false,"fork":false,"pushed_at":"2025-03-19T11:44:01.000Z","size":139,"stargazers_count":135,"open_issues_count":1,"forks_count":224,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-08T13:14:08.409Z","etag":null,"topics":["aws","dns","route53","terraform-module"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/modules/terraform-aws-modules/route53/aws","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/terraform-aws-modules.png","metadata":{"funding":{"github":["antonbabenko"],"custom":"https://www.paypal.me/antonbabenko"},"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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":"2020-06-17T20:21:06.000Z","updated_at":"2025-04-04T19:04:45.000Z","dependencies_parsed_at":"2024-01-03T02:26:39.083Z","dependency_job_id":"6b5ed286-a1da-4456-bd95-7528f5b1c22c","html_url":"https://github.com/terraform-aws-modules/terraform-aws-route53","commit_stats":{"total_commits":87,"total_committers":25,"mean_commits":3.48,"dds":0.6436781609195402,"last_synced_commit":"91f5b5412cac179829979f98b54e55793636eae3"},"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-route53","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-route53/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-route53/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-route53/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/terraform-aws-modules","download_url":"https://codeload.github.com/terraform-aws-modules/terraform-aws-route53/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254459088,"owners_count":22074605,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","dns","route53","terraform-module"],"created_at":"2024-08-01T00:01:11.447Z","updated_at":"2025-05-16T03:06:30.062Z","avatar_url":"https://github.com/terraform-aws-modules.png","language":"HCL","funding_links":["https://github.com/sponsors/antonbabenko","https://www.paypal.me/antonbabenko"],"categories":["Community Modules"],"sub_categories":["Miscellaneous"],"readme":"# Route53 Terraform module\n\nTerraform module which creates Route53 resources.\n\n[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md)\n\nThere are independent submodules:\n\n- [zones](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/modules/zones) - to manage Route53 zones\n- [records](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/modules/records) - to manage Route53 records\n- [delegation-sets](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/modules/delegation-sets) - to manage Route53 delegation sets\n- [resolver-endpoints](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/modules/resolver-endpoints) - to manage Route53 resolver endpoints\n- [resolver-rule-associations](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/modules/resolver-rule-associations) - to manage Route53 resolver rule associations\n- [zone-cross-account-vpc-association](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/modules/zone-cross-account-vpc-association) - to associate Route53 zones with VPCs from different AWS accounts\n\n## Usage\n\n### Create Route53 zones and records\n\n```hcl\nmodule \"zones\" {\n  source  = \"terraform-aws-modules/route53/aws//modules/zones\"\n  version = \"~\u003e 3.0\"\n\n  zones = {\n    \"terraform-aws-modules-example.com\" = {\n      comment = \"terraform-aws-modules-examples.com (production)\"\n      tags = {\n        env = \"production\"\n      }\n    }\n\n    \"myapp.com\" = {\n      comment = \"myapp.com\"\n    }\n  }\n\n  tags = {\n    ManagedBy = \"Terraform\"\n  }\n}\n\nmodule \"records\" {\n  source  = \"terraform-aws-modules/route53/aws//modules/records\"\n  version = \"~\u003e 3.0\"\n\n  zone_name = keys(module.zones.route53_zone_zone_id)[0]\n\n  records = [\n    {\n      name    = \"apigateway1\"\n      type    = \"A\"\n      alias   = {\n        name    = \"d-10qxlbvagl.execute-api.eu-west-1.amazonaws.com\"\n        zone_id = \"ZLY8HYME6SFAD\"\n      }\n    },\n    {\n      name    = \"\"\n      type    = \"A\"\n      ttl     = 3600\n      records = [\n        \"10.10.10.10\",\n      ]\n    },\n  ]\n\n  depends_on = [module.zones]\n}\n```\n\n## Examples\n\n- [Complete Route53 zones and records example](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/examples/complete) which shows how to create Route53 records of various types like S3 bucket and CloudFront distribution.\n\n\u003c!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n\u003c!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n\n## Authors\n\nModule is maintained by [Anton Babenko](https://github.com/antonbabenko) with help from [these awesome contributors](https://github.com/terraform-aws-modules/terraform-aws-route53/graphs/contributors).\n\n## License\n\nApache 2 Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/LICENSE) for full details.\n\n## Additional information for users from Russia and Belarus\n\n* Russia has [illegally annexed Crimea in 2014](https://en.wikipedia.org/wiki/Annexation_of_Crimea_by_the_Russian_Federation) and [brought the war in Donbas](https://en.wikipedia.org/wiki/War_in_Donbas) followed by [full-scale invasion of Ukraine in 2022](https://en.wikipedia.org/wiki/2022_Russian_invasion_of_Ukraine).\n* Russia has brought sorrow and devastations to millions of Ukrainians, killed hundreds of innocent people, damaged thousands of buildings, and forced several million people to flee.\n* [Putin khuylo!](https://en.wikipedia.org/wiki/Putin_khuylo!)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterraform-aws-modules%2Fterraform-aws-route53","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fterraform-aws-modules%2Fterraform-aws-route53","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterraform-aws-modules%2Fterraform-aws-route53/lists"}