We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 337fff6 commit 66d74bbCopy full SHA for 66d74bb
outputs.tf
@@ -1,4 +1,4 @@
1
output "vpc_id" {
2
description = "VPC id"
3
- value = "Test here"
+ value = "${aws_vpc.vpc.id}"
4
}
variables.tf
@@ -12,12 +12,12 @@ variable "vpc_cidr" {
12
13
variable "enable_dns_hostnames" {
14
description = "Enables DNS hosntnames for the VPC"
15
- type = boolean
+ type = bool
16
default = true
17
18
19
variable "enable_dns_support" {
20
description = "Enables DNS support for the VPC"
21
22
23
0 commit comments