standard
turbot/aws_tags
Get Involved
Version
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
Name | Type | Required | Description | Default |
---|---|---|---|---|
arn | string | Yes | The ARN of the resource. | - |
region | string | Yes | AWS Region of the resource(s). | - |
conn | connection.aws | Yes | Name of the AWS connection to be used for any authenticated actions. | - |
add | map(string) | Yes | Tags to add to or update on the resource. | - |
remove | list(string) | Yes | Tag keys to remove from the resource. | - |
Outputs
This pipeline has no outputs.