Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7ea98a1

Browse files
author
Sean Carolan
committedDec 5, 2019
Enable public DNS
1 parent 92f0421 commit 7ea98a1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎exercises/main.tf.completed

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
resource aws_vpc "hashicat" {
22
cidr_block = var.address_space
3-
enable_dns_hostnames = false
3+
enable_dns_hostnames = true
44

55
tags = {
66
Name = "${var.prefix}-vpc"

‎exercises/main.tf.cowsay

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
resource aws_vpc "hashicat" {
22
cidr_block = var.address_space
3-
enable_dns_hostnames = false
3+
enable_dns_hostnames = true
44

55
tags = {
66
Name = "${var.prefix}-vpc"

‎exercises/main.tf.start

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
resource aws_vpc "hashicat" {
22
cidr_block = var.address_space
3-
enable_dns_hostnames = false
3+
enable_dns_hostnames = true
44
}
55

66
# resource aws_subnet "hashicat" {

‎main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
resource aws_vpc "hashicat" {
22
cidr_block = var.address_space
3-
enable_dns_hostnames = false
3+
enable_dns_hostnames = true
44

55
tags = {
66
Name = "${var.prefix}-vpc"

0 commit comments

Comments
 (0)
Please sign in to comment.