Skip to content

Commit b684241

Browse files
committed
Updated descriptions for DNS variables (closes terraform-aws-modules#14)
1 parent 5b623b9 commit b684241

File tree

1 file changed

+2
-40
lines changed

1 file changed

+2
-40
lines changed

variables.tf

Lines changed: 2 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ variable "azs" {
4646
}
4747

4848
variable "enable_dns_hostnames" {
49-
description = "Should be true if you want to use private DNS within the VPC"
49+
description = "Should be true to enable DNS hostnames in the VPC"
5050
default = false
5151
}
5252

5353
variable "enable_dns_support" {
54-
description = "Should be true if you want to use private DNS within the VPC"
54+
description = "Should be true to enable DNS support in the VPC"
5555
default = false
5656
}
5757

@@ -80,11 +80,6 @@ variable "map_public_ip_on_launch" {
8080
default = true
8181
}
8282

83-
variable "enable_vpn_gateway" {
84-
description = "Should be true if you want to create a new VPN Gateway resource and attach it to the VPC"
85-
default = false
86-
}
87-
8883
variable "private_propagating_vgws" {
8984
description = "A list of VGWs the private route table should propagate"
9085
default = []
@@ -129,36 +124,3 @@ variable "elasticache_subnet_tags" {
129124
description = "Additional tags for the elasticache subnets"
130125
default = {}
131126
}
132-
133-
variable "enable_dhcp_options" {
134-
description = "Should be true if you want to specify a DHCP options set with a custom domain name, DNS servers, NTP servers, netbios servers, and/or netbios server type"
135-
default = false
136-
}
137-
138-
variable "dhcp_options_domain_name" {
139-
description = "Specifies DNS name for DHCP options set"
140-
default = ""
141-
}
142-
143-
variable "dhcp_options_domain_name_servers" {
144-
description = "Specify a list of DNS server addresses for DHCP options set, default to AWS provided"
145-
type = "list"
146-
default = ["AmazonProvidedDNS"]
147-
}
148-
149-
variable "dhcp_options_ntp_servers" {
150-
description = "Specify a list of NTP servers for DHCP options set"
151-
type = "list"
152-
default = []
153-
}
154-
155-
variable "dhcp_options_netbios_name_servers" {
156-
description = "Specify a list of netbios servers for DHCP options set"
157-
type = "list"
158-
default = []
159-
}
160-
161-
variable "dhcp_options_netbios_node_type" {
162-
description = "Specify netbios node_type for DHCP options set"
163-
default = ""
164-
}

0 commit comments

Comments
 (0)