-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
47 lines (38 loc) · 1.35 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
47
# Required Variables
variable "record_ip" {
description = "Static IP for the a-record"
type = string
}
variable "record_domain" {
description = "The domain on portion of the FQDN. hostname.DOMAIN = FQDN"
type = string
}
variable "record_hostname" {
description = "The hostname portion of the FQDN. HOSTNAME.domain = FQDN"
type = string
}
variable "record_dns_view" {
description = "DNS View that contains the zone that the record is being created in."
type = string
}
# Optional Variables
variable "ssl_mode" {
description = "Use SSL when connecting to infoblox server"
type = bool
default = false
}
variable "network_view" {
description = "Used to specify the Infoblox network view to use when allocating an IP dynamically. Do not use this field unless you really know your use case"
type = string
default = null
}
variable "ttl" {
description = "TTL value in seconds for the record. 0 disables caching. Lower values increase network traffic, High values can cause outages in case of sudden backing IP changes"
type = number
default = 3600
}
variable "ext_attrs" {
description = "Any additional extensible attributes to set on the DNS object. Note that Tenant ID EA is already set in the module and gets merged with this value"
type = map(string)
default = {}
}