Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 929 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 929 Bytes

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
}