Hello. I'm creating an EKS cluster using pulumi_ek...
# aws
l
Hello. I'm creating an EKS cluster using pulumi_eks.Cluster, passing in
Copy code
cluster_tags={
                'Name': self.cluster_name,
                'sometag': "somevalue",
            },
            cluster_security_group_tags={
                'Name': self.cluster_name,
                'sometag': "somevalue",

            },
            node_security_group_tags={
                'Name': self.cluster_name,
                'sometag': "somevalue",
            },
The sometag gets applied to the SGs created except the one named eks-cluster-sg-clustername-xxxxxx with the description "EKS created security group applied to ENI that is attached to EKS Control Plane master nodes, as well as any managed workloads." and this sg doesn't show up in the stack resources. Is this normal behaviour? Thanks