Skip to content

Commit

Permalink
EKS Cluster Name Corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
imyashkale committed Apr 6, 2024
1 parent ef31e3f commit 07b8538
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
1 change: 0 additions & 1 deletion eks.auto.tfvars

This file was deleted.

12 changes: 6 additions & 6 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ module "vpc" {
vpc_tags = local.tags

public_subnet_tags = {
Type = "Public"
"kubernetes.io/role/elb" = 1
"kubernetes.io/cluster/${var.eks_cluster_name}" = "shared"
Type = "Public"
"kubernetes.io/role/elb" = 1
"kubernetes.io/cluster/${local.name}" = "shared"
}
private_subnet_tags = {
Type = "Private"
"kubernetes.io/role/internal-elb" = 1
"kubernetes.io/cluster/${var.eks_cluster_name}" = "shared"
Type = "Private"
"kubernetes.io/role/internal-elb" = 1
"kubernetes.io/cluster/${local.name}" = "shared"
}

# For Public Subnet Launched Instances - to get the public IP
Expand Down
3 changes: 2 additions & 1 deletion terraform.tfvars
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
aws_region = "us-east-1"
enviroment = "dev"
application = "ultra"
enviroment = "dev"

0 comments on commit 07b8538

Please sign in to comment.