standard
turbot/aws_tags

Pipeline: Add and remove resource tags

This pipeline wraps the functionality to add and remove tags from a resource.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws_tags.pipeline.add_and_remove_resource_tags \
--arg 'arn=<string>' \
--arg 'region=<string>' \
--arg 'conn=<connection.aws>' \
--arg 'add=<map(string)>' \
--arg 'remove=<list(string)>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws_tags.pipeline.add_and_remove_resource_tags
args = {
arn = <string>
region = <string>
conn = <connection.aws>
add = <map(string)>
remove = <list(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
arn
string
YesThe ARN of the resource.-
region
string
YesAWS Region of the resource(s).-
conn
connection.aws
YesName of the AWS connection to be used for any authenticated actions.-
add
map(string)
YesTags to add to or update on the resource.-
remove
list(string)
YesTag keys to remove from the resource.-

Outputs

This pipeline has no outputs.