library
turbot/aws_tags

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 'cred=<string>' \
--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>
cred = <string>
add = <map(string)>
remove = <list(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
arnstringYesThe ARN of the resource.-
regionstringYesAWS Region of the resource(s).-
credstringYesName of the credential to be used for any authenticated actions.-
addmap(string)YesTags to add to or update on the resource.-
removelist(string)YesTag keys to remove from the resource.-

Outputs

This pipeline has no outputs.