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(string)>' \
--arg 'tag_keys=<list(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(string)>
tag_keys = <list(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(string)YesSpecifies the list of ARNs of the resources that you want to apply tags to.-
tag_keyslist(string)YesSpecifies 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.