Skip to content

stephenpaulger/terraform-aws-fastmail-dns

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform Fastmail DNS

Add DNS records suggested by fastmail in order to:

  • set MX records for your domain and all subdomains,
  • allow web mail to be accessed at mail.yourdomain.com,
  • and add SPF and DKIM records to help prevent forged mail from your domain.

At present this module does not add entries for email, CalDAV and CardDAV clients to auto-discover settings.

Requirements

Usage

resource "aws_route53_zone" "primary" {
  name = var.domain
}

module "fastmail_dns" {
  source  = "stephenpaulger/fastmail-dns/aws"
  version = "3.0.0"

  zone_id = aws_route53_zone.primary.zone_id
  domain  = var.domain
}