forked from rhythmictech/terraform-aws-route53-resolver-rule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
37 lines (31 loc) · 843 Bytes
/
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
variable "associated_vpcs" {
description = "List of VPC IDs to associate rule to"
type = list(string)
}
variable "forward_domain" {
description = "Domain name to forward requests for"
type = string
}
variable "forward_ips" {
description = "List of IPs to forward DNS requests to"
type = list(string)
}
variable "dns_port" {
type = number
description = "DNS port to forward DNS requests to"
default = 53
}
variable "resolver_endpoint" {
description = "Resolver Endpoint ID"
type = string
}
variable "resource_share_accounts" {
default = []
description = "List of account IDs to share this resolver rule with"
type = list(string)
}
variable "tags" {
default = {}
description = "Map of tags to apply to supported resources"
type = map(string)
}