{"id":14984572,"url":"https://github.com/danvaida/ansible-roles-route53","last_synced_at":"2025-08-07T22:40:23.420Z","repository":{"id":87587220,"uuid":"84331335","full_name":"danvaida/ansible-roles-route53","owner":"danvaida","description":"Creates, updates and deletes DNS records in Route53.","archived":false,"fork":false,"pushed_at":"2017-07-24T10:20:02.000Z","size":18,"stargazers_count":10,"open_issues_count":0,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-24T18:49:37.546Z","etag":null,"topics":["ansible","ansible-roles","aws","dns","route53"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danvaida.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2017-03-08T14:48:41.000Z","updated_at":"2022-04-18T09:25:04.000Z","dependencies_parsed_at":"2023-03-14T00:15:47.549Z","dependency_job_id":null,"html_url":"https://github.com/danvaida/ansible-roles-route53","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"5d480b129db15ce8cd851c76fdca84f5d274c347"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danvaida%2Fansible-roles-route53","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danvaida%2Fansible-roles-route53/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danvaida%2Fansible-roles-route53/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danvaida%2Fansible-roles-route53/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danvaida","download_url":"https://codeload.github.com/danvaida/ansible-roles-route53/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248298830,"owners_count":21080411,"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":["ansible","ansible-roles","aws","dns","route53"],"created_at":"2024-09-24T14:09:17.197Z","updated_at":"2025-04-10T21:20:39.089Z","avatar_url":"https://github.com/danvaida.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/danvaida/ansible-roles-route53.svg?branch=master)](https://travis-ci.org/danvaida/ansible-roles-route53)\n[![Galaxy](https://img.shields.io/ansible/role/16135.svg)](https://galaxy.ansible.com/danvaida/route53/)\n\n# Ansible Route53 role\n\nCreates, updates and deletes DNS zones and records in Route53.\n\n## Requirements\n\n* boto \u003e= 2.24.0\n\n## Role Variables\n\n* __route53_records_to_add:__\n  List of DNS zone records to add. For differences between a `CNAME` record and a Route53-specific `alias` record, see the official docs [here](http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resource-record-sets-choosing-alias-non-alias.html)\n\n* __route53_records_to_remove:__\n  List of DNS zone records to remove.\n\n* __route53_zones_to_add:__\n  List of DNS zones to add.\n\n* __route53_zones_to_remove:__\n  List of DNS zones to remove.\n\n## Dependencies\n\nNone.\n\n## Example Playbook\n\n    - hosts: localhost\n      connection: local\n      gather_facts: False\n      become: False\n      roles:\n        - role: route53\n          route53_zones_to_add:\n            - zone: 'zone.xxx'\n              comment: 'some comment'\n              vpc_id: vpc-12345678\n              vpc_region: 'eu-central-1'\n\n          route53_records_to_add:\n            - zone: 'zone.xxx'\n              private_zone: True\n              comment: 'zone comment'\n              records:\n                - record: 'in.the.zone.xxx'\n                  type: A\n                  ttl: 600\n                  value: '1.1.1.1'\n\n                - record: 'by.the.zone.xxx'\n                  type: CNAME\n                  ttl: 300\n                  value: 'in.the.zone.xxx'\n\n                - record: 'to.the.zone.xxx'\n                  type: A\n                  value: 'in.the.zone.xxx.'\n                  alias: True\n                  alias_hosted_zone_id: 'ABCD1234567890'\n\n          route53_records_to_remove:\n            - zone: 'zone.xxx'\n              private_zone: True\n              records:\n                - record: 'in.the.zone.xxx'\n                  type: A\n                  ttl: 600\n                  value: '1.1.1.1'\n\n                - record: 'by.the.zone.xxx'\n                  type: CNAME\n                  ttl: 300\n                  value: 'in.the.zone.xxx'\n\n                - record: 'to.the.zone.xxx'\n                  type: A\n                  value: 'in.the.zone.xxx'\n                  alias: True\n                  alias_hosted_zone_id: 'ABCD1234567890'\n\n          route53_zones_to_remove:\n            - zone: 'zone.xxx'\n\n## Testing\n\nIf you want to run the tests on the provided docker environment, run the\nfollowing commands:\n\n    $ cd /path/to/ansible-roles/route53\n    $ docker build -t ansible-roles-test tests/support\n    $ docker run --rm -it \\\n      -v $PWD:/etc/ansible/roles/route53 \\\n      --env AWS_ACCESS_KEY=$AWS_ACCESS_KEY \\\n      --env AWS_SECRET_KEY=$AWS_SECRET_KEY \\\n      --env AWS_REGION=$AWS_REGION \\\n      --workdir /etc/ansible/roles/route53/tests \\\n      ansible-roles-test\n\n# To do\n\n* Add integration tests for private zones\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanvaida%2Fansible-roles-route53","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanvaida%2Fansible-roles-route53","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanvaida%2Fansible-roles-route53/lists"}