File tree Expand file tree Collapse file tree
arc/aws/391835788720/us-east-1/01_infra Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module "pytorch_arc_dev_eks" {
66 source = " terraform-aws-modules/eks/aws"
77 version = " ~> 20.37"
88
9- cluster_name = " lf-arc-dev "
9+ cluster_name = var . arc_dev_environment
1010 cluster_version = " 1.33"
1111
1212 cluster_endpoint_public_access = true
@@ -54,6 +54,6 @@ module "pytorch_arc_dev_eks" {
5454 subnet_ids = module. arc_runners_vpc . private_subnets
5555
5656 tags = {
57- Environment = var.arc_prod_environment
57+ Environment = var.arc_dev_environment
5858 }
5959}
Original file line number Diff line number Diff line change @@ -3,3 +3,9 @@ variable "arc_prod_environment" {
33 type = string
44 default = " lf-arc-prod"
55}
6+
7+ variable "arc_dev_environment" {
8+ description = " development environment prefix"
9+ type = string
10+ default = " lf-arc-dev"
11+ }
You can’t perform that action at this time.
0 commit comments