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

23
variables.tf Normal file
View File

@@ -0,0 +1,23 @@
variable "POWERDNS_API_TOKEN" {
description = "POWERDNS_API_TOKEN"
type = string
sensitive = true
}
variable "POWERDNS_API_URL" {
description = "POWERDNS_API_TOKEN"
type = string
sensitive = true
}
variable "zone-records" {
description = "Parametrs lxc"
type = list(object({
zone = string,
name = string,
type = string,
ttl = number,
record = list(string)
})
)
}