pulumi/pulumi-kubernetesx

Let ClusterRoleBinding accept object inputs

lblackstone opened this issue · 0 comments

Rather than requiring the user to specify the subject and roleRef, implicitly derive this information from input objects.

Example:

   new kx.ClusterRoleBinding(
        name,
        {
            subjects: [
                serviceAccountObject,
            ],
            roleRef: clusterRoleObject,
        }
    );
}