library
turbot/aws
Get Involved
Version
Pipeline: 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
Name | Type | Required | Description | Default |
---|---|---|---|---|
region | string | Yes | The name of the Region. | - |
conn | connection.aws | Yes | Name of AWS connection to use. If not provided, the default AWS connection will be used. | connection.aws.default |
resource_arns | list(string) | Yes | Specifies the list of ARNs of the resources that you want to apply tags to. | - |
tag_keys | list(string) | Yes | Specifies a list of tag keys that you want to remove from the specified resources. | - |
Outputs
Name | Description |
---|---|
failed_resources | A map containing a key-value pair for each failed item that couldn’t be tagged. The key is the ARN of the failed resource. |