Files
IaC-DNS-powerdns/main.tf

9 lines
310 B
Terraform
Raw Normal View History

2026-01-16 16:13:50 +04:00
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
}