-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
46 lines (39 loc) · 1.51 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
variable "parent_public_zone_id" {
type = string
description = "The public zone ID hosting the parent domain name. Only required when include_public_delegation_record is \"yes\"."
default = ""
}
variable "parent_private_zone_id" {
type = string
description = "The private zone ID hosting the parent domain name. Only required when include_private_delegation_record is \"yes\"."
default = ""
}
variable "delegated_public_zone_name_servers" {
type = list(string)
description = "The name servers of the public hosted zone hosting the delegated domain name. Only required when include_public_delegation_record is \"yes\"."
default = []
}
variable "delegated_private_zone_name_servers" {
type = list(string)
description = "The name servers of the private hosted zone hosting the delegated domain name. Only required when include_private_delegation_record is \"yes\"."
default = []
}
variable "delegated_domain_name" {
type = string
description = "The domain name to be delegated."
}
variable "ttl" {
type = number
default = 172800
description = "The TTL of the created records."
}
variable "include_public_delegation_record" {
type = string
default = "yes"
description = "Whether or not to create a delegation record in the public hosted zone (\"yes\" or \"no\"). Defaults to \"yes\"."
}
variable "include_private_delegation_record" {
type = string
default = "yes"
description = "Whether or not to create a delegation record in the private hosted zone (\"yes\" or \"no\"). Defaults to \"yes\"."
}