A Terraform module to create a scalable and highly available Amazon Route53 Domain Name System (DNS) on Amazon Web Services (AWS).
This module supports Terraform v1.x, v0.15, v0.14, v0.13 as well as v0.12.20 and above and is compatible with the terraform AWS provider v3 as well as v2.45 and above.
- Module Features
- Getting Started
- Examples
- Module Argument Reference
- Module Outputs
- External Documentation
- Module Versioning
- About Mineiros
- Reporting Issues
- Contributing
- Makefile Targets
- License
This module offers a convenient way to create Route53 zones and records.
-
Zones: You can either create a single zone by passing a string (e.G.
"mineiros.com"
) or multiple zones by passing a list of strings (e.G.["mineiros.io", "mineiros.com]
) as thename
parameter.name = "mineiros.io"
. You can also share the same records among multiple zones. Please see the example for details. -
Records: Records can be shared among zones or be defined for a single zone only. We support alias, weighted and failover records.
-
Default TTL for Records Per default set a TTL (time to live) of 3600 seconds ( 1 hour ) for non-alias records. You can overwrite this behavior for records by setting the
ttl
parameter. To adjust the default value for TTL, please use thedefault_ttl
parameter. Please see the [examples] for details. -
Delegation Set: This module will create a delegation set for every zone by default. The default behavior can be disabled by setting
skip_delegation_set_creation
totrue
. Ifskip_delegation_set_creation
isn't set totrue
and multiple zones are being created, all created zones will share the same delegation set.
Most basic usage creating a Route53 zone and delegation set and
a record for www
pointing to localhost.
module "route53" {
source = "mineiros-io/route53/aws"
version = "~> 0.6.0"
name = "mineiros.io"
records = [
{
name = "www"
type = "A"
records = ["127.0.0.1"]
},
]
}
We offer a broad set of examples that can be used to quickly start using this module.
- Basic routing
- Private hosted zone
- Multiple domains with different records
- Multiple domains that share the same record set
- Delegation set
- Failover routing
- Weighted routing
See variables.tf and examples/ for details and use-cases.
-
module_enabled
: (Optionalbool
)Specifies whether resources in the module will be created.
Default is
true
. -
module_depends_on
: (Optionallist(dependency)
)A list of dependencies. Any object can be assigned to this list to define a hidden external dependency.
Default is
[]
.
-
name
: (Requiredstring
)The name of the Hosted Zone. To create multiple Hosted Zones at once, pass a list of names
["zone1", "zone2"]
. Forces new resource.Example:
Single: name = "example.com" Multiple: name = ["example.com", "example.io"]
-
records
: (Optionallist(record)
)A list of records to create in the Hosted Zone.
Default is
[]
.Each
record
object in the list accepts the following attributes:-
name
: (Requiredstring
)The name of the record.
-
type
: (Requiredstring
)The record type. Valid values are
A
,AAAA
,CAA
,CNAME
,MX
,NAPTR
,NS
,PTR
,SOA
,SPF
,SRV
andTXT
. -
ttl
: (Optionalnumber
)The TTL of the record.
Default is
3600
. -
alias
: (Optionalobject(alias)
)An alias block. Expects
name
,zone_id
andevaluate_target_health
to be defined. Conflicts withttl
&records
.The
alias
object accepts the following attributes:-
name
: (Requiredstring
)DNS domain name for a CloudFront distribution, S3 bucket, ELB, or another resource record set in this hosted zone.
-
zone_id
: (Requiredstring
)Hosted zone ID for a CloudFront distribution, S3 bucket, ELB, or Route 53 hosted zone.
-
evaluate_target_health
: (Optionalbool
)Set to true if you want Route 53 to determine whether to respond to DNS queries using this resource record set by checking the health of the resource record set.
-
-
allow_overwrite
: (Optionalbool
)Allow creation of this record in Terraform to overwrite an existing record, if any. This does not affect the ability to update the record in Terraform and does not prevent other resources within Terraform or manual Route 53 changes outside Terraform from overwriting this record. This configuration is not recommended for most environments.
Default is
false
. -
health_check_id
: (Optionalstring
)The health check the record should be associated with.
-
set_identifier
: (Optionalstring
)Unique identifier to differentiate records with routing policies from one another. Required if using
failover
,geolocation
,latency
, orweighted routing
policies documented below. -
weight
: (Optionalnumber
)A numeric value indicating the relative weight of the record. Will turn the record into a weighted record. For details see http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html#routing-policy-weighted
-
failover
: (Optionalnumber
)The failover type of the record. Will turn the record into a failover record. Possible values are
PRIMARY
andSECONDARY
. APRIMARY
record will be served if its healthcheck is passing, otherwise theSECONDARY
will be served. For details see http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-configuring-options.html#dns-failover-failover-rrsets
-
-
tags
: (Optionalmap(string)
)A map of tags to apply to all created resources that support tags.
Default is
{}
. -
allow_overwrite
: (Optionalbool
)Default allow_overwrite value valid for all record sets.
Default is
false
. -
default_ttl
: (Optionalnumber
)The default TTL ( Time to Live ) in seconds that will be used for all records that support the ttl parameter. Will be overwritten by the records ttl parameter if set.
Default is
3600
. -
vpc_ids
: (Optionallist(string)
)A list of IDs of VPCs to associate with a private hosted zone. Conflicts with the delegation_set_id.
Default is
[]
. -
delegation_set_id
: (Optionalstring
)The ID of the reusable delegation set whose NS records you want to assign to the hosted zone.
-
zone_id
: (Optionalstring
)A zone ID to create the records in.
-
comment
: (Optionalstring
)A comment for the hosted zone.
Default is
"Managed by Terraform"
. -
force_destroy
: (Optionalbool
)Whether to force destroy all records (possibly managed outside of Terraform) in the zone when destroying the zone.
Default is
false
.
-
reference_name
: (Optionalstring
)The reference name used in Caller Reference (helpful for identifying single delegation set amongst others).
-
skip_delegation_set_creation
: (Optionalbool
)Whether or not to create a delegation set and associate with the created zone.
Default is
false
.
The following attributes are exported by the module:
-
zone
: (list(zone)
)All
aws_route53_zone
objects. -
records
: (list(record)
)All
aws_route53_record
objects. -
delegation_set
: (object(delegation_set)
)The
aws_route53_delegation_set
object. -
module_enabled
: (bool
)Whether this module is enabled.
- Zones: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zones-working-with.html
- Records: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/rrsets-working-with.html
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_zone
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_delegation_set
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_zone_association
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_health_check
This Module follows the principles of Semantic Versioning (SemVer).
Given a version number MAJOR.MINOR.PATCH
, we increment the:
MAJOR
version when we make incompatible changes,MINOR
version when we add functionality in a backwards compatible manner, andPATCH
version when we make backwards compatible bug fixes.
- Backwards compatibility in versions
0.0.z
is not guaranteed whenz
is increased. (Initial development) - Backwards compatibility in versions
0.y.z
is not guaranteed wheny
is increased. (Pre-release)
Mineiros is a DevOps as a Service company based in Berlin, Germany. We offer commercial support for all of our projects and encourage you to reach out if you have any questions or need help. Feel free to send us an email at hello@mineiros.io or join our Community Slack channel.
We can also help you with:
- Terraform modules for all types of infrastructure such as VPCs, Docker clusters, databases, logging and monitoring, CI, etc.
- Consulting & training on AWS, Terraform and DevOps
We use GitHub Issues to track community reported issues and missing features.
Contributions are always encouraged and welcome! For the process of accepting changes, we use Pull Requests. If you'd like more information, please see our Contribution Guidelines.
This repository comes with a handy Makefile.
Run make help
to see details on each available target.
This module is licensed under the Apache License Version 2.0, January 2004. Please see LICENSE for full details.
Copyright © 2020-2022 Mineiros GmbH