mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-11 21:11:32 +01:00
* fix: Update AWS provider version to support `AL2023_*` AMI types * fix: Ensure the cluster service CIDR is passed to the AL2023 user data where its required
16 lines
393 B
Smarty
16 lines
393 B
Smarty
%{ if enable_bootstrap_user_data ~}
|
|
---
|
|
apiVersion: node.eks.aws/v1alpha1
|
|
kind: NodeConfig
|
|
spec:
|
|
cluster:
|
|
name: ${cluster_name}
|
|
apiServerEndpoint: ${cluster_endpoint}
|
|
certificateAuthority: ${cluster_auth_base64}
|
|
cidr: ${cluster_service_cidr}
|
|
containerd:
|
|
config: |
|
|
[plugins."io.containerd.grpc.v1.cri".containerd]
|
|
discard_unpacked_layers = false
|
|
%{ endif ~}
|