Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoDiazL committed Dec 12, 2023
1 parent e47d42c commit 34dd391
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ resource "aws_eks_cluster" "main" {
data "aws_subnets" "private" {
filter {
name = "vpc-id"
values = [var.var.aws_selected_vpc_id]
values = [var.aws_selected_vpc_id]
}
tags = {
Tier = "Private"
Expand All @@ -40,7 +40,7 @@ data "aws_subnets" "private" {
data "aws_subnets" "public" {
filter {
name = "vpc-id"
values = [var.var.aws_selected_vpc_id]
values = [var.aws_selected_vpc_id]
}
tags = {
Tier = "Public"
Expand Down

0 comments on commit 34dd391

Please sign in to comment.