From f376a5e8420a5fbd6a09e53ad4b01828ddc71c05 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 25 Oct 2017 10:26:14 +0000 Subject: [PATCH] Fix variables description in accordance to AWS Documentation (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-dns.html) --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 1a03aa864..72b3a98bf 100644 --- a/variables.tf +++ b/variables.tf @@ -46,12 +46,12 @@ variable "azs" { } variable "enable_dns_hostnames" { - description = "Should be true if you want to use private DNS within the VPC" + description = "Should be true if you want to use public DNS hostnames within the VPC" default = false } variable "enable_dns_support" { - description = "Should be true if you want to use private DNS within the VPC" + description = "Should be true if you want to use public DNS servers within the VPC" default = false }