From 8af26f3194c35efc7fdf92f7bd5bb9645b79cc84 Mon Sep 17 00:00:00 2001 From: Steve Nolen Date: Wed, 11 Mar 2026 15:02:39 -0400 Subject: [PATCH] allow passing of kubernetes groups to add to eks access entry --- python-pulumi/src/ptd/pulumi_resources/aws_eks_cluster.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python-pulumi/src/ptd/pulumi_resources/aws_eks_cluster.py b/python-pulumi/src/ptd/pulumi_resources/aws_eks_cluster.py index 7d97f0c..9c22258 100644 --- a/python-pulumi/src/ptd/pulumi_resources/aws_eks_cluster.py +++ b/python-pulumi/src/ptd/pulumi_resources/aws_eks_cluster.py @@ -1012,6 +1012,7 @@ def check_arn_mismatch(configured_arn: str) -> None: cluster_name=self.eks.name, principal_arn=principal_arn, type=entry_type, + kubernetes_groups=entry.get("kubernetesGroups"), opts=pulumi.ResourceOptions(parent=self.eks, import_=entry_import), )