Skip to content

Commit

Permalink
fix(): incorrect type for dns name and support
Browse files Browse the repository at this point in the history
  • Loading branch information
moarpheus committed Feb 19, 2023
1 parent 337fff6 commit 66d74bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
output "vpc_id" {
description = "VPC id"
value = "Test here"
value = "${aws_vpc.vpc.id}"
}
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ variable "vpc_cidr" {

variable "enable_dns_hostnames" {
description = "Enables DNS hosntnames for the VPC"
type = boolean
type = bool
default = true
}

variable "enable_dns_support" {
description = "Enables DNS support for the VPC"
type = boolean
type = bool
default = true
}

0 comments on commit 66d74bb

Please sign in to comment.