This role creates DNS entries for Route 53 using the ansible route53 module.
Nothing, it runs out of the box.
In the current version, you can specify the following variables:
Name | Default | |
---|---|---|
dns | --- | Object variable containing site DNS zone. |
This package has no dependencies.
GPLv2
Sam Morrison
# dns object variable
---
dns:
- zone: some-fancy-site.com
entries:
- record: some-fancy-site.com
type: A
ttl: 500
value: 12.34.56.78
- record: some-fancy-site.com
type: MX
ttl: 500
value: "5 mta.some-fancy-site.com"
- record: blog.some-fancy-site.com
type: CNAME
ttl: 500
value: server1.some-fancy-site.com
---
- name: cns.dns role test
hosts: all
roles:
- cns.dns