mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-11 22:41:43 +01:00
* Support adding additional cluster dns ranges to bottlerocket template * Add example for multiple dns ips * fmt, and tf docs * fix: Use a list by default for cluster-dns-ip --------- Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
9 lines
255 B
Smarty
9 lines
255 B
Smarty
%{ if enable_bootstrap_user_data ~}
|
|
[settings.kubernetes]
|
|
"cluster-name" = "${cluster_name}"
|
|
"api-server" = "${cluster_endpoint}"
|
|
"cluster-certificate" = "${cluster_auth_base64}"
|
|
"cluster-dns-ip" = ${cluster_dns_ips}
|
|
%{ endif ~}
|
|
${bootstrap_extra_args ~}
|