library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

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

NameTypeRequiredDescriptionDefault
region
string
YesThe name of the Region.-
conn
connection.aws
YesName of AWS connection to use. If not provided, the default AWS connection will be used.connection.aws.default
cluster_name
string
YesThe name of the EKS cluster associated with the node group.-
node_group_name
string
YesThe name of the node group to delete.-

Outputs

NameDescription
node_groupThe full description of the deleted node group.