fastmail-dns

bluk/fastmail-dns/aws

Terraform Module HCL AWS ⏱ stale 2y 4mo

Unofficial Terraform module to create AWS Route 53 records for setting up FastMail

Install

module "fastmail-dns" {
source = "bluk/fastmail-dns/aws"
version = "0.1.0"
}
⭐ Source on GitHub 📦 Registry page

README

terraform-aws-fastmail-dns This is an unofficial Terraform module which creates AWS Route 53 records to setup a domain with FastMail. Example Usage In your Terraform file: `` resource "aws_route53_zone" "example" { name = "example.com" } module "example_fastmail" { source = "github.com/bluk/terraform-aws-fastmail-dns" domain_name = "example.com" route53_zone_id = "${aws_route53_zone.example.zone_id}" } ``

Inputs (3)

NameTypeDescriptionDefault
domain_nameanyThe domain name to setup DNS records for like `example.com` required
route53_zone_idanyThe Route53 resource Hosted Zone ID to create DNS records in. Should be value of required
create_root_domain_txtanyDetermines if the root domain should have a TXT record. true/falsetrue

Resources (1)

aws_route53_record

Details

FrameworkTerraform Module
LanguageHCL
Version0.1.0
Cloud AWS
★ Stars0
Forks4
Total downloads6.5k
Inputs3
Resources1
LicenseMIT
Namespacebluk
Updated