library
turbot/aws
Get Involved
Version
Pipeline: Describe EC2 Instances
Describes the specified instances or all instances.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run aws.pipeline.describe_ec2_instances \ --arg 'region=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = aws.pipeline.describe_ec2_instances args = { region = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.aws | Yes | Name of AWS connection to use. If not provided, the default AWS connection will be used. | connection.aws.default |
region | string | Yes | The name of the Region. | - |
instance_ids | list(string) | No | The instance IDs. | - |
instance_type | string | No | The type of instance (for example, t2.micro). | - |
ebs_optimized | bool | No | A Boolean that indicates whether the instance is optimized for Amazon EBS I/O. | - |
tags | map(string) | No | One or more tags. If specified, only those instances that match the tags are returned. | - |
Outputs
Name | Description |
---|---|
instances | Information about one or more EC2 instances. |