Skip to content

Commit

Permalink
Comment out vpc_id variable definition
Browse files Browse the repository at this point in the history
  • Loading branch information
yang0352 committed Apr 15, 2025
1 parent 04a1160 commit a9a7c49
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion karpenter-resources/values.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ ec2NodeClass:
amiFamily: ${amd_ami_family}
amiSelectorTerms:
- alias: ${amd_ami_alias}
# vpcId: ${vpc_id}
subnetSelectorTerms:
- tags:
Name: "${subnets_name}"
Expand Down
1 change: 0 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
})
]
}
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
# }

0 comments on commit a9a7c49

Please sign in to comment.