From d623c23343dda43a7b872925ed1eea30e6887ec8 Mon Sep 17 00:00:00 2001 From: Paul Schoenfelder Date: Thu, 17 May 2018 13:45:51 -0400 Subject: [PATCH] [general] Fix formatting --- main/variables.tf | 4 ++-- modules/stack/dns.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/main/variables.tf b/main/variables.tf index 0b2ecae..f01e8bd 100644 --- a/main/variables.tf +++ b/main/variables.tf @@ -85,10 +85,10 @@ variable "secret_key_base" { variable "new_relic_app_name" { description = "The name of the application in New Relic" - default = "" + default = "" } variable "new_relic_license_key" { description = "The license key for talking to New Relic" - default = "" + default = "" } diff --git a/modules/stack/dns.tf b/modules/stack/dns.tf index 9b04f0d..aceafe2 100644 --- a/modules/stack/dns.tf +++ b/modules/stack/dns.tf @@ -1,4 +1,4 @@ -# Internal DNS +# Internal DNS Zone resource "aws_route53_zone" "main" { name = "${var.prefix}.${var.dns_zone_name}" vpc_id = "${aws_vpc.vpc.id}" @@ -9,7 +9,7 @@ resource "aws_route53_zone" "main" { } } -# DNS Records +# Private DNS records resource "aws_route53_record" "db" { zone_id = "${aws_route53_zone.main.zone_id}" name = "db"