feat: Support bootstrap_self_managed_addons (#3099)

Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
Taehyun Kim
2024-07-16 08:55:09 +09:00
committed by GitHub
parent d7aea4ca6b
commit af88e7d2f8
25 changed files with 46 additions and 38 deletions

View File

@@ -27,10 +27,11 @@ locals {
resource "aws_eks_cluster" "this" {
count = local.create ? 1 : 0
name = var.cluster_name
role_arn = local.cluster_role
version = var.cluster_version
enabled_cluster_log_types = var.cluster_enabled_log_types
name = var.cluster_name
role_arn = local.cluster_role
version = var.cluster_version
enabled_cluster_log_types = var.cluster_enabled_log_types
bootstrap_self_managed_addons = var.bootstrap_self_managed_addons
access_config {
authentication_mode = var.authentication_mode