Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Unofficial Terraform module to create Google DNS records for setting up FastMail

License

Notifications You must be signed in to change notification settings

bluk/terraform-google-fastmail-dns

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

terraform-google-fastmail-dns

This is an unofficial Terraform module which creates Google Cloud DNS records to setup a domain with FastMail.

Example Usage

In your Terraform file:

resource "google_dns_managed_zone" "example" {
  name        = "example"
  dns_name    = "example.com."
  description = "Example domain"
}

module "example_fastmail" {
  source = "github.com/bluk/terraform-google-fastmail-dns"
  domain_name = "example.com"
  managed_zone_name = "${google_dns_managed_zone.example.name}"
}