standard
turbot/aws_tags

Pipeline: Correct one resource with incorrect tags

Corrects one resource with incorrect tags

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws_tags.pipeline.correct_one_resource_with_incorrect_tags \
--arg 'title=<string>' \
--arg 'arn=<string>' \
--arg 'region=<string>' \
--arg 'conn=<connection.aws>' \
--arg 'account_id=<string>' \
--arg 'remove=<list(string)>' \
--arg 'upsert=<map(string)>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws_tags.pipeline.correct_one_resource_with_incorrect_tags
args = {
title = <string>
arn = <string>
region = <string>
conn = <connection.aws>
account_id = <string>
remove = <list(string)>
upsert = <map(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
title
string
YesTitle of the resource, to be used as a display name.-
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.-
account_id
string
YesThe account ID of the resource.-
remove
list(string)
YesList of tag keys to remove from the resource-
upsert
map(string)
YesMap of tag keys and values to add or update on the resource-
notifier
notifier
YesThe name of the notifier to use for sending notification messages.notifier.default
notification_level
string
info, verbose, error
YesThe verbosity level of notification messages to send.info
approvers
list(notifier)
YesList of notifiers to be used for obtaining action/approval decisions.notifier.default
default_action
string
notify, apply, skip
YesThe default action to use for the detected item, used if no input is provided.notify

Outputs

This pipeline has no outputs.