library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Modify EC2 Instance Attributes

Modify attributes of an EC2 instance in AWS.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.modify_ec2_instance_attributes \
--arg 'instance_id=<string>' \
--arg 'region=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws.pipeline.modify_ec2_instance_attributes
args = {
instance_id = <string>
region = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
instance_idstringYesID of the EC2 instance to modify.-
security_group_idslist of stringNoIDs of the new security groups to associate with the instance.-
regionstringYesThe name of the Region.-

Outputs

This pipeline has no outputs.