diff --git a/karpenter-resources/values.yaml.tpl b/karpenter-resources/values.yaml.tpl index 3afd957..c4004b1 100644 --- a/karpenter-resources/values.yaml.tpl +++ b/karpenter-resources/values.yaml.tpl @@ -8,7 +8,6 @@ ec2NodeClass: amiFamily: ${amd_ami_family} amiSelectorTerms: - alias: ${amd_ami_alias} -# vpcId: ${vpc_id} subnetSelectorTerms: - tags: Name: "${subnets_name}" diff --git a/main.tf b/main.tf index aac0e5a..1db2570 100644 --- a/main.tf +++ b/main.tf @@ -104,7 +104,6 @@ resource "helm_release" "nodepool_resources" { karpenter_node_profile = module.karpenter_resources.instance_profile_name subnets_name = var.subnets_name tags = var.tags - # vpc_id = var.vpc_id }) ] } diff --git a/variables.tf b/variables.tf index 72bd4d8..33046c8 100644 --- a/variables.tf +++ b/variables.tf @@ -66,7 +66,7 @@ variable "namespace" { default = "namespace" } -variable "vpc_id" { - description = "The ID of the VPC where the resources will be deployed" - type = string -} +# variable "vpc_id" { +# description = "The ID of the VPC where the resources will be deployed" +# type = string +# }