first commit

This commit is contained in:
2026-01-16 16:13:50 +04:00
commit e55ce74c34
7 changed files with 85 additions and 0 deletions

8
main.tf Normal file
View File

@@ -0,0 +1,8 @@
resource "powerdns_record" "foobar" {
count = length(var.zone-records)
zone = var.zone-records[count.index].zone
name = var.zone-records[count.index].name
type = var.zone-records[count.index].type
ttl = var.zone-records[count.index].ttl
records = var.zone-records[count.index].record
}