Skip to content

Commit

Permalink
feat: add visibility tag to subnets (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmorehouse authored Apr 13, 2024
1 parent af6484b commit 85313e2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@ module "vpc" {
public_subnet_tags = {
"kubernetes.io/cluster/${var.nuon_id}" = "shared"
"kubernetes.io/role/elb" = 1
"visibility" = "public"
}

private_subnet_tags = {
"kubernetes.io/cluster/${var.nuon_id}" = "shared"
"kubernetes.io/role/internal-elb" = 1
"visibility" = "private"
}
}

0 comments on commit 85313e2

Please sign in to comment.