IaC Bazaar
LinodeStatic-verified

Linode DNS Zone & Records

Complete DNS zone with typed record management and sane TTL defaults on Linode's free DNS Manager.

terraformAlt & Specialty Clouds#linode

Compare DNS & Traffic Management across clouds →

linode-domainterraform v1.7

Verification

Static-verified

Passed: validated and lint-clean (provider-schema-validated for AWS/Azure/GCP; Terraform-language lint elsewhere).

Conformance

  • Static validation (fmt · validate · tflint)
  • Security scan clean (Checkov)
  • Plan tests (mocked: validation rules · outputs)

Provenance

Functional

  • Live test pending (no cloud run yet)

Last verified 2026-06-28 · how we verify

Verify this download

cosign · sha-256

Don't take our word for it. Every release is signed with cosign - check the bytes against our pinned public key before you trust them.

# 1. Our pinned public key - fetch once, trust out-of-band
curl -O https://www.iac-bazaar.com/cosign.pub

# 2. This module's Sigstore bundle
curl -o linode-domain-1.0.0.sigstore.json \
  https://www.iac-bazaar.com/api/artifacts/linode-domain/signature

# 3. Verify the tarball you downloaded
cosign verify-blob \
  --key cosign.pub \
  --bundle linode-domain-1.0.0.sigstore.json \
  linode-domain-1.0.0.tar.gz
# → Verified OK

# 4. (optional) confirm the checksum too
echo "7bd669483153ea7fcc89b021e76e94f3c9426e72928b286d88cb05720ca255f5  linode-domain-1.0.0.tar.gz" | sha256sum -c

Use it from the registry

terraform · opentofu
module "domain" {
  source  = "www.iac-bazaar.com/iac-bazaar/linode-domain/linode"
  version = "1.0.0"
}

Free module — Terraform/OpenTofu downloads it with no token or setup. Full setup: registry docs.

Inputs & outputs

Create a free account to read this module's contract

The declared contract — every input name, type, default and description, plus every output — is shown to signed-in accounts, not to anonymous visitors.

This module is in the Free band, and a free account sees the contract of every Free module — no subscription needed.

Documentation

linode-domain

Complete Linode DNS zone (DNS Manager) with typed, declarative record management and sane TTL defaults. Master (authoritative) or slave (AXFR mirror) zones. Works with Terraform and OpenTofu (>= 1.6), Linode provider >= 3.14, < 4.0.

Status: static-validated, live-test pending. This module ships under live-test quarantine: it has passed tofu fmt, tofu validate, and tflint, but the real apply → verify → destroy gate is pending a Linode sandbox account. Treat the secure defaults below as the contract.

Design & secure defaults

  • One declarative records map. Every record is a typed object validated at plan time — record_type is constrained to the supported set, CAA records must carry a valid tag, and SRV records must supply service, protocol, and port. No stringly-typed footguns.
  • AXFR closed by default. axfr_ips is empty unless you explicitly run secondary nameservers — open zone transfer leaks your entire zone to anyone, so the module never opens it for you.
  • Master/slave correctness enforced. A master zone must declare soa_email; a slave zone must declare master_ips. Both are checked with plan-time preconditions, not discovered at apply.
  • CAA encouraged. The example pins certificate issuance to a single CA via a CAA record — a cheap, high-value control most zones omit.
  • Sane TTLs. Zone and per-record TTLs default to 3600s; Linode rounds to its supported steps. The module surfaces Linode's authoritative nameservers as an output so you can complete delegation at your registrar.

Requirements

  • Terraform or OpenTofu >= 1.6
  • linode/linode provider >= 3.14, < 4.0
  • DNS Manager is free, but Linode only serves a zone while the account has at least one active Linode service. Delegate the domain at your registrar to the nameservers output.

License

Commercial — LicenseRef-IaCBazaar-Commercial. © IaC Bazaar. Original work (not derived from a third-party module).

Usage code & full reference unlock after purchase

The complete copy-paste usage, the full input/output reference, and operational notes ship with your licence - shown here and bundled in the download.

  • Usage
  • Inputs
  • Outputs

Related modules