Skip to content
Get Started for Free

Resource Groups Tagging API

Resource Groups Tagging API helps you centrally manage tags across AWS resources. You can apply and remove tags for multiple resources at once, and query resources by tag keys and values. You can also query tagged resources by AWS service, by resource type within a service, or directly by specific resource ARNs.

LocalStack allows you to use the Resource Groups Tagging API in your local environment to test tagging workflows end-to-end. The supported APIs are available on our API Coverage section, which provides information on the extent of Resource Groups Tagging API’s integration with LocalStack.

This guide is designed for users new to Resource Groups Tagging API and assumes basic knowledge of the AWS CLI and our lstk aws command.

Start your LocalStack container using your preferred method. We will demonstrate how to create resources, tag them, and query them using the Resource Groups Tagging API.

Create an S3 bucket and an SQS queue:

Terminal window
BUCKET_NAME="rg-tagging-bucket"
QUEUE_NAME="rg-tagging-queue"
lstk aws s3api create-bucket --bucket "$BUCKET_NAME"
QUEUE_URL=$(lstk aws sqs create-queue --queue-name "$QUEUE_NAME" | jq -r '.QueueUrl')

Retrieve the resource ARNs:

Terminal window
BUCKET_ARN="arn:aws:s3:::$BUCKET_NAME"
QUEUE_ARN=$(lstk aws sqs get-queue-attributes \
--queue-url "$QUEUE_URL" \
--attribute-names QueueArn | jq -r '.Attributes.QueueArn')

Use the TagResources API to apply tags:

Terminal window
lstk aws resourcegroupstaggingapi tag-resources \
--resource-arn-list "$BUCKET_ARN" "$QUEUE_ARN" \
--tags '{"Environment":"dev","Team":"platform"}'

Use the GetResources API to list resources with a specific tag:

Terminal window
lstk aws resourcegroupstaggingapi get-resources \
--tag-filters Key=Environment,Values=dev

You can also inspect available keys and values:

Terminal window
lstk aws resourcegroupstaggingapi get-tag-keys
lstk aws resourcegroupstaggingapi get-tag-values --key Environment

Use the UntagResources API to remove one or more tag keys:

Terminal window
lstk aws resourcegroupstaggingapi untag-resources \
--resource-arn-list "$BUCKET_ARN" "$QUEUE_ARN" \
--tag-keys Team

LocalStack’s Resource Groups Tagging API supports tagging for the following services:

OperationImplementedVerified on Kubernetes
Page 1 of 0
Was this page helpful?