We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f29e1 commit 19aea98Copy full SHA for 19aea98
src/main.tf
@@ -109,11 +109,13 @@ module "karpenter" {
109
}),
110
# karpenter-specific values
111
yamlencode({
112
- aws = {
113
- defaultInstanceProfile = one(aws_iam_instance_profile.default[*].name)
+ settings = {
+ aws = {
114
+ defaultInstanceProfile = one(aws_iam_instance_profile.default[*].name)
115
+ clusterName = local.eks_cluster_id
116
+ clusterEndpoint = local.eks_cluster_endpoint
117
+ }
118
}
- clusterName = local.eks_cluster_id
- clusterEndpoint = local.eks_cluster_endpoint
119
120
# additional values
121
yamlencode(var.chart_values)
0 commit comments