paws.compute (version 0.1.0)

eks_update_cluster_config: Updates an Amazon EKS cluster configuration

Description

Updates an Amazon EKS cluster configuration. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with the DescribeUpdate API operation.

Usage

eks_update_cluster_config(name, resourcesVpcConfig, clientRequestToken)

Arguments

name

[required] The name of the Amazon EKS cluster to update.

resourcesVpcConfig
clientRequestToken

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

Request syntax

svc$update_cluster_config(
  name = "string",
  resourcesVpcConfig = list(
    subnetIds = list(
      "string"
    ),
    securityGroupIds = list(
      "string"
    ),
    endpointPublicAccess = TRUE|FALSE,
    endpointPrivateAccess = TRUE|FALSE
  ),
  clientRequestToken = "string"
)

Details

Currently, the only cluster configuration changes supported are to enable or disable Amazon EKS public and private API server endpoints. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .

Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to UPDATING (this status transition is eventually consistent). When the update is complete (either Failed or Successful), the cluster status moves to Active.