Skip to content

Commit 66d74bb

Browse files
committed
fix(): incorrect type for dns name and support
1 parent 337fff6 commit 66d74bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
output "vpc_id" {
22
description = "VPC id"
3-
value = "Test here"
3+
value = "${aws_vpc.vpc.id}"
44
}

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ variable "vpc_cidr" {
1212

1313
variable "enable_dns_hostnames" {
1414
description = "Enables DNS hosntnames for the VPC"
15-
type = boolean
15+
type = bool
1616
default = true
1717
}
1818

1919
variable "enable_dns_support" {
2020
description = "Enables DNS support for the VPC"
21-
type = boolean
21+
type = bool
2222
default = true
2323
}

0 commit comments

Comments
 (0)