first commit
This commit is contained in:
23
variables.tf
Normal file
23
variables.tf
Normal 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)
|
||||
})
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user