Add support for forwarding path to dns module (#171)

* add support for forwarding path to dns module

* update README
This commit is contained in:
Ludovico Magnocavallo
2020-11-20 08:35:58 +01:00
committed by GitHub
parent db444be03b
commit 27aa0aa64c
6 changed files with 35 additions and 14 deletions

View File

@@ -53,11 +53,10 @@ variable "domain" {
type = string
}
# TODO(ludoo): add support for forwarding path attribute
variable "forwarders" {
description = "List of target name servers, only valid for 'forwarding' zone types."
type = list(string)
default = []
description = "Map of {IPV4_ADDRESS => FORWARDING_PATH} for 'forwarding' zone types. Path can be 'default', 'private', or null for provider default."
type = map(string)
default = {}
}
variable "name" {