Implement read-only Dynu Terraform provider skeleton

This commit is contained in:
beatz174-bit
2026-04-21 13:02:42 +10:00
parent 0889d83a0a
commit b268d7a6aa
16 changed files with 1041 additions and 0 deletions
@@ -0,0 +1,7 @@
data "dynu_dns_records" "records" {
hostname = "www.example.com"
}
output "records" {
value = data.dynu_dns_records.records.records
}
@@ -0,0 +1,7 @@
data "dynu_domain" "selected" {
hostname = "www.example.com"
}
output "domain" {
value = data.dynu_domain.selected.domain
}
@@ -0,0 +1,5 @@
data "dynu_domains" "all" {}
output "domains" {
value = data.dynu_domains.all.domains
}