diff --git a/outputs.tf b/outputs.tf index 7071b21..5df7fa4 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,4 +1,4 @@ output "vpc_id" { description = "VPC id" - value = "Test here" + value = "${aws_vpc.vpc.id}" } diff --git a/variables.tf b/variables.tf index 6e3062b..8945dd6 100644 --- a/variables.tf +++ b/variables.tf @@ -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 }