Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Feb 12, 2026
1 parent 713652b commit 8554f79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/data.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
data "aws_vpc" "eks_vpc" {
data "aws_vpc" "vpc" {
filter {
name = "tag:Name"
values = [var.vpc_name]
Expand All @@ -12,7 +12,7 @@ data "aws_subnets" "subnets" {
}
filter {
name = "vpc-id"
values = [data.aws_vpc.eks_vpc.id]
values = [data.aws_vpc.vpc.id]
}
}

Expand Down

0 comments on commit 8554f79

Please sign in to comment.