UNPKG

@cloudtoolkit/aws

Version:

The Cloud Toolkit AWS provider for Pulumi provision well-architected solutions in [AWS](https://aws.amazon.com/). With Cloud Toolkit AWS you can use your preferred programming language to manage your platform with Infrastructure as Code.

46 lines (45 loc) 1.78 kB
import * as pulumi from "@pulumi/pulumi"; import * as pulumiKubernetes from "@pulumi/kubernetes"; /** * ClusterAdmins is a component that create the resources in the Cluster for a set of AWS IAM Users and Roles, managing the access with the integration with AWS IAM. */ export declare class ClusterAdmins extends pulumi.ComponentResource { /** * Returns true if the given object is an instance of ClusterAdmins. 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 ClusterAdmins; /** * The Kubernetes ClusterRoleBinding to associate the ClusterRole to the project. */ readonly clusterRoleBinding: pulumi.Output<pulumiKubernetes.rbac.v1.ClusterRoleBinding>; /** * The Kubernetes provider used to provision Kubernetes resources. */ readonly provider: pulumi.Output<pulumiKubernetes.Provider>; /** * Create a ClusterAdmins 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: ClusterAdminsArgs, opts?: pulumi.ComponentResourceOptions); } /** * The set of arguments for constructing a ClusterAdmins resource. */ export interface ClusterAdminsArgs { /** * Kubernetes provider used by Pulumi. */ kubeconfig: pulumi.Input<string>; /** * The name for the group of Cluster Admins. */ name: pulumi.Input<string>; /** * The list of AWS IAM User arns. */ userArns: pulumi.Input<pulumi.Input<string>[]>; }