Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Commit 856ce29

Browse files
author
Kiki Chao
authored
change vpc_id to vpc
1 parent c5a3e52 commit 856ce29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dns/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ variable "name" {
1717
description = "Zone name, e.g stack.local"
1818
}
1919

20-
variable "vpc_id" {
20+
variable "vpc" {
2121
description = "The VPC ID (omit to create a public zone)"
2222
default = ""
2323
}
2424

2525
resource "aws_route53_zone" "main" {
2626
name = "${var.name}"
27-
vpc_id = "${var.vpc_id}"
27+
vpc = "${var.vpc_id}"
2828
comment = ""
2929
}
3030

0 commit comments

Comments
 (0)