library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Stop EC2 Instances

Stops an Amazon EBS-backed instance.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.stop_ec2_instances \
--arg 'region=<string>' \
--arg 'instance_ids=<list(string)>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = aws.pipeline.stop_ec2_instances
args = {
region = <string>
instance_ids = <list(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
instance_ids
list(string)
YesThe IDs of the instances.-

Outputs

NameDescription
instancesInformation about the stopped instances.

Tags

recommended = true