library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Untag Resources

Removes the specified tags from the specified resources.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.untag_resources \
--arg 'region=<string>' \
--arg 'resource_arns=<list of string>' \
--arg 'tag_keys=<list of string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws.pipeline.untag_resources
args = {
region = <string>
resource_arns = <list of string>
tag_keys = <list of string>
}
}

Params

NameTypeRequiredDescriptionDefault
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
resource_arnslist of stringYesSpecifies the list of ARNs of the resources that you want to apply tags to.-
tag_keyslist of stringYesSpecifies a list of tag keys that you want to remove from the specified resources.-

Outputs

NameDescription
failed_resourcesA map containing a key-value pair for each failed item that couldn’t be tagged. The key is the ARN of the failed resource.