fastmail-dns

bluk/fastmail-dns/google

Terraform Module HCL GOOGLE

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

Install
module "fastmail-dns" {
source = "bluk/fastmail-dns/google"
version = "0.1.2"
}
plain text: /constructs/tfmod-bluk-fastmail-dns-google/install.txt
⭐ Source on GitHub 📦 Registry page
README

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}" } ``

Inputs (3)
NameTypeDescriptionDefault
domain_nameanyThe domain name to setup DNS records for like `example.com` required
managed_zone_nameanyThe name of the managed zone resource to create DNS records in. Should be value required
create_root_domain_txtanyDetermines if the root domain should have a TXT record. true/falsetrue
Resources (1)
google_dns_record_set
Details
FrameworkTerraform Module
LanguageHCL
Version0.1.2
Cloud GOOGLE
★ Stars0
Forks1
Total downloads5.6k
Inputs3
Resources1
LicenseMIT
Namespacebluk
Updated