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 b9821e9 commit 05fe38cCopy full SHA for 05fe38c
terraform/eks_nodegroup/data.tf
@@ -3,10 +3,6 @@ data "aws_subnets" "private_subnets" {
3
name = "vpc-id"
4
values = [module.vpc.vpc_id]
5
}
6
- filter {
7
- name = "availability-zone"
8
- values = ["us-east-1b", "us-east-1c"] # Replace with your cluster AZs
9
- }
10
filter {
11
name = "tag:Name"
12
values = ["*private*"] # This matches all subnets with a Name tag
@@ -22,4 +18,4 @@ data "aws_subnets" "public_subnets" {
22
18
23
19
values = ["*public*"] # This matches all subnets with a Name tag
24
20
25
-}
21
+}
0 commit comments