-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
66 lines (57 loc) · 1.44 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
variable "services" {
description = "Consul services monitored by Consul Terraform Sync"
type = map(
object({
id = string
name = string
address = string
port = number
meta = map(string)
tags = list(string)
namespace = string
status = string
node = string
node_id = string
node_address = string
node_datacenter = string
node_tagged_addresses = map(string)
node_meta = map(string)
})
)
}
variable "ultradns_username" {
description = "UltraDNS username"
type = string
}
variable "ultradns_password" {
description = "UltraDNS password"
type = string
sensitive = true
}
variable "ultradns_host_url" {
description = "UltraDNS hosturl"
type = string
}
variable "zone_name" {
description = "Name of the zone."
type = string
}
variable "owner_name" {
description = "The domain name of the owner of the RRSet."
type = string
}
variable "record_type" {
description = "Record type of the RRSet.Supported values are: A,AAAA,1,28. Defaults to A"
type = string
default = "A"
}
variable "record_data" {
description = "The data for the record."
type = list(any)
default = []
}
variable "ttl" {
description = "The time to live (in seconds) for the record."
type = number
default = 120
}