We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c00fca commit dcc6e08Copy full SHA for dcc6e08
terraform/aws/aws-eks-operator/main.tf
@@ -73,6 +73,8 @@ module "eks" {
73
74
eks_managed_node_groups = {
75
main = {
76
+ # Truncate the node group name to 20 characters to comply with AWS/EKS
77
+ # node group naming length constraints.
78
name = substr(local.name, 0, 20)
79
instance_types = [local.node_instance_type]
80
@@ -121,7 +123,8 @@ resource "helm_release" "tailscale_operator" {
121
123
hostname = local.operator_name
122
124
}
125
apiServerProxyConfig = {
- mode = true
126
+ mode = "true"
127
+ allowImpersonation = "true"
128
tags = "tag:k8s-operator,tag:k8s-api-server"
129
130
})
0 commit comments