import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as enums from "../../types/enums"; export interface AddonsArgs { /** * Enable the ClusterAddons. */ enabled: pulumi.Input; } export interface AdotApplicationMetricsArgs { /** * Data retention expressed in days. */ dataRetention?: pulumi.Input; /** * Enable metrics. */ enabled?: pulumi.Input; } export interface ClusterAddonsIngressArgs { /** * Configure the admin IngressController. */ admin?: pulumi.Input; /** * Configure the default IngressController. */ default?: pulumi.Input; } export interface ClusterAddonsIngressItemArgs { /** * The domain used to expose the IngressController. */ domain?: pulumi.Input; /** * Enable TLS termination in Load Balancer. */ enableTlsTermination?: pulumi.Input; /** * Use a public Load Balancer to expose the IngressController. */ public?: pulumi.Input; /** * Set a whitelist to access the IngressController. */ whitelist?: pulumi.Input[]>; } export interface ClusterApiArgs { /** * Configure the private endpoint for the Kubernetes API. */ private?: pulumi.Input; /** * Configure the public endpoint for the Kubernetes API. */ public?: pulumi.Input; } export interface ClusterAuthenticationArgs { /** * The list of AWS Accounts that can authenticate with the API Server. */ accounts?: pulumi.Input[]>; /** * The list of AWS IAM Users names to be configured as cluster-admin. */ clusterAdmins?: pulumi.Input[]>; /** * The list of AWS IAM Roles that can authenticate with the API server. */ roles?: pulumi.Input[]>; /** * The list of AWS IAM Users that can authenticate with the API server. */ users?: pulumi.Input[]>; } export interface ClusterNetworkingArgs { /** * Configure the access to admin applications. */ admin?: pulumi.Input; /** * Configure the access to applications. */ default?: pulumi.Input; } export interface ClusterNetworkingIngressArgs { /** * The domain used to expose the IngressController. */ domain: pulumi.Input; /** * Enable TLS termination in Load Balancer. */ enableTlsTermination?: pulumi.Input; /** * Use a public Load Balancer to expose the IngressController. */ public?: pulumi.Input; /** * Set a whitelist to access the IngressController. */ whitelist?: pulumi.Input[]>; } export interface ClusterNodeGroupArgs { /** * Disk size in GiB for each node. Defaults to 20. */ diskSize?: pulumi.Input; /** * The EC2 Instance Type to be used to create the Nodes. */ instanceType?: pulumi.Input; /** * The maxium number of nodes running in the node group. Defaults to 2. */ maxCount: pulumi.Input; /** * The maximum number of nodes unavailable at once during a version update. Defaults to 1. */ maxUnavailable: pulumi.Input; /** * The minimum number of nodes running in the node group. Defaults to 1. */ minCount: pulumi.Input; /** * The Node Group name. */ name: pulumi.Input; /** * The subnets type to be used to deploy the Node Groups. */ subnetsType?: pulumi.Input; } export interface ClusterOidcProvidersArgs { /** * Enable the default OIDC Provider that is used in the cluster to let Service Accounts to authenticate against AWS with a given IAM Role. */ enableDefaultProvider: pulumi.Input; } export interface ClusterPrivateApiArgs { /** * Enable the private endpoint for Kubernetes API. */ enabled?: pulumi.Input; } export interface ClusterPublicApiArgs { /** * Enable the public endpoint for Kubernetes API. */ enabled?: pulumi.Input; /** * The list of CIDR that will be allowed to reach the public endpoint for Kubernetes API. */ whitelist?: pulumi.Input[]>; } export interface FluentbitLoggingArgs { /** * Configure applications logging. */ applications?: pulumi.Input; /** * Configure data plane logging. */ dataplane?: pulumi.Input; /** * Configure host logging. */ host?: pulumi.Input; } export interface FluentbitLoggingItemArgs { /** * Data retention expressed in days. */ dataRetention?: pulumi.Input; /** * Enable logging. */ enabled: pulumi.Input; } export interface IamAuthenticatorRoleArgs { /** * The list of Kubernetes groups to be associated with the AWS IAM Role. */ groups?: pulumi.Input[]>; /** * The AWS IAM Role arn. */ rolearn: pulumi.Input; /** * The Kubernetes username to be associated with the AWS IAM Role. */ username: pulumi.Input; } export interface IamAuthenticatorUserArgs { /** * The list of Kubernetes groups to be associated with the AWS IAM User. */ groups?: pulumi.Input[]>; /** * The AWS IAM User arn. */ userarn: pulumi.Input; /** * The Kubernetes username to be associated with the AWS IAM User. */ username: pulumi.Input; } export interface IngressNginxTlsArgs { /** * The domain to be used to create a signed Certificate. */ domain: pulumi.Input; /** * Enable the signed Certificate. */ enabled?: pulumi.Input; /** * The Zone id. */ zoneId: pulumi.Input; } export interface ProjectResourcesArgs { /** * Amount of reserved CPU. */ cpu?: pulumi.Input; /** * Amount of CPU limit. */ limitCpu?: pulumi.Input; /** * Amount of Memory limit. */ limitMemory?: pulumi.Input; /** * Amount of reserved Memory. */ memory?: pulumi.Input; }