import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as pulumiKubernetes from "@pulumi/kubernetes"; import { AdotApplication, AdotOperator, ArgoCD, AwsEbsCsiDriver, AwsLoadBalancerController, AwsSecretsStoreCsiDriver, Calico, CertManager, ClusterAutoscaler, Dashboard, ExternalDns, Fluentbit, IngressNginx, SecretsStoreCsiDriver } from "./index"; /** * ClusterAddons is a component that manages the Lubernetes addons to setup a production-ready cluster. */ export declare class ClusterAddons extends pulumi.ComponentResource { /** * Returns true if the given object is an instance of ClusterAddons. 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 ClusterAddons; /** * The IngressNginx addon used for admin access. */ readonly adminIngressNginx: pulumi.Output; /** * Route53 Zone arn used for admin IngressController. */ readonly adminZoneArn: pulumi.Output; /** * Route53 Zone id used for admin IngressController. */ readonly adminZoneId: pulumi.Output; /** * The OpenTelemetry (ADOT) application that sends metrics to CloudWatch. */ readonly adotApplication: pulumi.Output; /** * The OpenTelemetry (ADOT) operator that sends logs to CloudWatch. */ readonly adotOperator: pulumi.Output; /** * The ArgoCD addon. */ readonly argocd: pulumi.Output; /** * The AWS LoadBalancer Controller. */ readonly awsLoadBalancerController: pulumi.Output; /** * The Secrets Store CSI driver that allows retrieving secrets from AWS Secrets Manager or Systems Manager Parameter Store. */ readonly awsSecretsStoreCsiDriver: pulumi.Output; /** * The Calico addon used to manage network policies. */ readonly calico: pulumi.Output; /** * The CertManager addon. */ readonly certManager: pulumi.Output; /** * The Kubernetes ClusterAutoscaler addon. */ readonly clusterAutoscaler: pulumi.Output; /** * The Kubernetes dashboard addon. */ readonly dashboard: pulumi.Output; /** * The IngressNginx addon used for default access. */ readonly defaultIngressNginx: pulumi.Output; /** * Route53 Zone arn used for default IngressController. */ readonly defaultZoneArn: pulumi.Output; /** * Route53 Zone id used for default IngressController. */ readonly defaultZoneId: pulumi.Output; /** * The EBS CSI driver that allows to create volumes using the block storage service of AWS. */ readonly ebsCsiDriver: pulumi.Output; /** * The ExternalDns addon. */ readonly externalDns: pulumi.Output; /** * The OpenTelemetry (ADOT) application that sends metrics to CloudWatch. */ readonly fluentbit: pulumi.Output; /** * The Secrets Store CSI driver that implements the interface to retrieve secrets from a Cloud Provider. */ readonly secretsStoreCsiDriver: pulumi.Output; /** * Create a ClusterAddons 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: ClusterAddonsArgs, opts?: pulumi.ComponentResourceOptions); } /** * The set of arguments for constructing a ClusterAddons resource. */ export interface ClusterAddonsArgs { /** * The EKS Cluster name. */ clusterName: pulumi.Input; /** * The OIDC Identity Provider arn. */ identityProvidersArn: pulumi.Input[]>; /** * The configuration for Ingress Controller. */ ingress?: pulumi.Input; /** * The OIDC Identity Provider url. */ issuerUrl: pulumi.Input; /** * The Pulumi provider used for Kubernetes resources. */ k8sProvider: pulumi.Input; /** * Configure the cluster observability for logging. */ logging?: pulumi.Input; /** * Configure the cluster observability for metrics. */ metrics?: pulumi.Input; }