import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as pulumiAws from "@pulumi/aws"; import * as pulumiKubernetes from "@pulumi/kubernetes"; /** * IamAuthenticator is a component that integrates the AWS IAM service with the Kubernetes authentication system. He receives a list of AWS IAM users and roles to enable their authentication to the cluster. */ export declare class IamAuthenticator extends pulumi.ComponentResource { /** * Returns true if the given object is an instance of IamAuthenticator. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is IamAuthenticator; /** * The AWS IAM Group that has admin permission in the cluster. */ readonly clusterAdminGroup: pulumi.Output; /** * The AWS IAM Group Policy that has admin permission in the cluster. */ readonly clusterAdminGroupPolicy: pulumi.Output; /** * The AWS IAM Role that has admin permission in the cluster. */ readonly clusterAdminRole: pulumi.Output; /** * The AWS IAM Group Policy that has admin permission in the cluster. */ readonly clusterAdminRolePolicy: pulumi.Output; /** * The list of AWS IAM UserGroupMemebership to provide cluster-admin access to the given users. */ readonly clusterAdminUserGroupMemberships: pulumi.Output; /** * The AWS IAM Group Policy that has admin permission in the cluster. */ readonly clusterUserPolicy: pulumi.Output; /** * The AWS IAM Group Policy that has admin permission in the cluster. */ readonly clusterUserPolicyAttachment: pulumi.Output; /** * The Path applied to the authentication ConfigMap. */ readonly configMap: pulumi.Output; /** * The Kubernetes provider. */ readonly provider: pulumi.Output; /** * Create a IamAuthenticator resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: IamAuthenticatorArgs, opts?: pulumi.ComponentResourceOptions); } /** * The set of arguments for constructing a IamAuthenticator resource. */ export interface IamAuthenticatorArgs { /** * List of AWS Accounts allowed to authenticate in the cluster. */ accounts?: pulumi.Input[]>; /** * The list of AWS IAM Users names to be configured as cluster-admin. */ clusterAdmins?: pulumi.Input[]>; /** * The EKS Cluster ARN. */ clusterArn: pulumi.Input; /** * The Kubeconfig to access to the cluster. */ kubeconfig: pulumi.Input; /** * The list of AWS IAM Roles for NodeGroups to generate the aws-auth ConfigMap. */ nodeGroupRoles?: pulumi.Input[]>; /** * The list of AWS IAM Roles to generate the aws-auth ConfigMap. */ roles?: pulumi.Input[]>; /** * The list of AWS IAM Users to generate the aws-auth ConfigMap. */ users?: pulumi.Input[]>; }