library
turbot/aws
Get Involved
Version
Pipeline: Delete EKS Node Group
Deletes a specified node group from an Amazon EKS cluster.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run aws.pipeline.delete_eks_node_group \ --arg 'region=<string>' \ --arg 'cluster_name=<string>' \ --arg 'node_group_name=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = aws.pipeline.delete_eks_node_group args = { region = <string> cluster_name = <string> node_group_name = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
region | string | Yes | The name of the Region. | - |
conn | connection.aws | Yes | Name of AWS connection to use. If not provided, the default AWS connection will be used. | connection.aws.default |
cluster_name | string | Yes | The name of the EKS cluster associated with the node group. | - |
node_group_name | string | Yes | The name of the node group to delete. | - |
Outputs
Name | Description |
---|---|
node_group | The full description of the deleted node group. |