@pulumi/eks
Version:
[](https://github.com/pulumi/pulumi-eks/actions/workflows/master.yml) [](https://slack.pulumi.com) [.
*/
configurationValues?: pulumi.Input<{
[key: string]: any;
}>;
/**
* Specifies that your pods may use subnets and security groups (within the same VPC as your control plane resources) that are independent of your cluster's `resourcesVpcConfig`.
*
* Defaults to false.
*/
customNetworkConfig?: pulumi.Input<boolean>;
/**
* Allows the kubelet's liveness and readiness probes to connect via TCP when pod ENI is enabled. This will slightly increase local TCP connection latency.
*/
disableTcpEarlyDemux?: pulumi.Input<boolean>;
/**
* Enables using Kubernetes network policies. In Kubernetes, by default, all pod-to-pod communication is allowed. Communication can be restricted with Kubernetes NetworkPolicy objects.
*
* See for more information: [Kubernetes Network Policies](https://kubernetes.io/docs/concepts/services-networking/network-policies/).
*/
enableNetworkPolicy?: pulumi.Input<boolean>;
/**
* Specifies whether to allow IPAMD to add the `vpc.amazonaws.com/has-trunk-attached` label to the node if the instance has capacity to attach an additional ENI. Default is `false`. If using liveness and readiness probes, you will also need to disable TCP early demux.
*/
enablePodEni?: pulumi.Input<boolean>;
/**
* IPAMD will start allocating (/28) prefixes to the ENIs with ENABLE_PREFIX_DELEGATION set to true.
*/
enablePrefixDelegation?: pulumi.Input<boolean>;
/**
* Specifies the ENI_CONFIG_LABEL_DEF environment variable value for worker nodes. This is used to tell Kubernetes to automatically apply the ENIConfig for each Availability Zone
* Ref: https://docs.aws.amazon.com/eks/latest/userguide/cni-custom-network.html (step 5(c))
*
* Defaults to the official AWS CNI image in ECR.
*/
eniConfigLabelDef?: pulumi.Input<string>;
/**
* Used to configure the MTU size for attached ENIs. The valid range is from 576 to 9001.
*
* Defaults to 9001.
*/
eniMtu?: pulumi.Input<number>;
/**
* Specifies whether an external NAT gateway should be used to provide SNAT of secondary ENI IP addresses. If set to true, the SNAT iptables rule and off-VPC IP rule are not applied, and these rules are removed if they have already been applied.
*
* Defaults to false.
*/
externalSnat?: pulumi.Input<boolean>;
/**
* Specifies the file path used for logs.
*
* Defaults to "stdout" to emit Pod logs for `kubectl logs`.
*/
logFile?: pulumi.Input<string>;
/**
* Specifies the log level used for logs.
*
* Defaults to "DEBUG"
* Valid values: "DEBUG", "INFO", "WARN", "ERROR", or "FATAL".
*/
logLevel?: pulumi.Input<string>;
/**
* Specifies whether NodePort services are enabled on a worker node's primary network interface. This requires additional iptables rules and that the kernel's reverse path filter on the primary interface is set to loose.
*
* Defaults to true.
*/
nodePortSupport?: pulumi.Input<boolean>;
/**
* How to resolve field value conflicts when migrating a self-managed add-on to an Amazon EKS add-on. Valid values are `NONE` and `OVERWRITE`. For more details see the [CreateAddon](https://docs.aws.amazon.com/eks/latest/APIReference/API_CreateAddon.html) API Docs.
*/
resolveConflictsOnCreate?: enums.ResolveConflictsOnCreate;
/**
* How to resolve field value conflicts for an Amazon EKS add-on if you've changed a value from the Amazon EKS default value. Valid values are `NONE`, `OVERWRITE`, and `PRESERVE`. For more details see the [UpdateAddon](https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html) API Docs.
*/
resolveConflictsOnUpdate?: enums.ResolveConflictsOnUpdate;
/**
* Pass privilege to containers securityContext. This is required when SELinux is enabled. This value will not be passed to the CNI config by default
*/
securityContextPrivileged?: pulumi.Input<boolean>;
/**
* The Amazon Resource Name (ARN) of an existing IAM role to bind to the add-on's service account. The role must be assigned the IAM permissions required by the add-on. If you don't specify an existing IAM role, then the add-on uses the permissions assigned to the node IAM role.
*
* For more information, see [Amazon EKS node IAM role](https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html) in the Amazon EKS User Guide.
*
* Note: To specify an existing IAM role, you must have an IAM OpenID Connect (OIDC) provider created for your cluster. For more information, see [Enabling IAM roles for service accounts on your cluster](https://docs.aws.amazon.com/eks/latest/userguide/enable-iam-roles-for-service-accounts.html) in the Amazon EKS User Guide.
*/
serviceAccountRoleArn?: pulumi.Input<string>;
/**
* Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*/
tags?: pulumi.Input<pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>[]>;
/**
* Specifies the veth prefix used to generate the host-side veth device name for the CNI.
*
* The prefix can be at most 4 characters long.
*
* Defaults to "eni".
*/
vethPrefix?: pulumi.Input<string>;
/**
* Specifies the number of free elastic network interfaces (and all of their available IP addresses) that the ipamD daemon should attempt to keep available for pod assignment on the node.
*
* Defaults to 1.
*/
warmEniTarget?: pulumi.Input<number>;
/**
* Specifies the number of free IP addresses that the ipamD daemon should attempt to keep available for pod assignment on the node.
*/
warmIpTarget?: pulumi.Input<number>;
/**
* WARM_PREFIX_TARGET will allocate one full (/28) prefix even if a single IP is consumed with the existing prefix. Ref: https://github.com/aws/amazon-vpc-cni-k8s/blob/master/docs/prefix-and-ip-target.md
*/
warmPrefixTarget?: pulumi.Input<number>;
}