mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-18 07:23:45 +01:00
feat: Support bootstrap_self_managed_addons (#3099)
Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
9
main.tf
9
main.tf
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user