Add ttl to the DNS records

Signed-off-by: Jason Rothstein <fdragon@fdragon.org>
This commit is contained in:
2026-05-08 22:19:26 -04:00
parent 07c52e22a1
commit a6d1a1e4a7
26 changed files with 28 additions and 0 deletions
+2
View File
@@ -1,6 +1,8 @@
resource "digitalocean_record" "A" {
domain = data.digitalocean_domain.this.name
name = var.host_name
ttl = "300"
type = "A"
value = digitalocean_droplet.this.ipv4_address
}