Rename dns record state field to enabled

This commit is contained in:
beatz174-bit
2026-04-29 15:43:29 +10:00
parent b6aae2c19d
commit ef99983118
10 changed files with 156 additions and 37 deletions
@@ -1,7 +1,8 @@
resource "dynu_dns_record" "txt" {
resource "dynu_dns_record" "a_location_min_ttl" {
hostname = "api.example.com"
record_type = "TXT"
content = "managed-by-terraform"
ttl = 300
state = true
record_type = "A"
content = "198.51.100.10"
ttl = 90
enabled = false
location = "us"
}