forked from cloudposse/terraform-aws-route53-alias
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
33 lines (27 loc) · 866 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
variable "aliases" {
type = "list"
description = "List of aliases"
}
variable "parent_zone_id" {
default = ""
description = "ID of the hosted zone to contain this record (or specify `parent_zone_name`)"
}
variable "parent_zone_name" {
default = ""
description = "Name of the hosted zone to contain this record (or specify `parent_zone_id`)"
}
variable "target_dns_name" {
description = "DNS-name of target resource (e.g. ALB,ELB)"
}
variable "target_zone_id" {
description = "ID of target resource (e.g. ALB,ELB)"
}
variable "evaluate_target_health" {
default = "false"
description = "Set to true if you want Route 53 to determine whether to respond to DNS queries"
}
variable "enabled" {
type = "string"
default = "true"
description = "Set to false to prevent the module from creating any resources"
}