Add dynu_dns_record CRUD resource and write-capable client

This commit is contained in:
beatz174-bit
2026-04-23 13:52:55 +10:00
parent d6b52c1f44
commit 7d636b6371
9 changed files with 970 additions and 49 deletions
@@ -0,0 +1,7 @@
resource "dynu_dns_record" "txt" {
hostname = "api.example.com"
record_type = "TXT"
content = "managed-by-terraform"
ttl = 300
state = true
}