Require specific tags as well as allowing for additional tags at user's discretion

0

Is there a way that I can enforce the existence/usage of 5 specific tag key values as well as allow developers and other individuals the ability to add additional tags as needed? Currently, in our development environment, I have the following configured on an IAM role that we assume for Terraform deployments, but if an individual were to add a tag key value not like the ones below, they would be met with an error.

Any guidance would be much appreciated since it seems as though everything I've tried thus far has failed.

    {
      "Sid": "S3",
      "Effect": "Allow",
      "Action": [
        "s3:*"
      ],
      "Resource": "*",
      "Condition": {
        "ForAllValues:StringEquals": {
          "aws:TagKeys": [
            "Application",
            "CreatedBy",
            "Department",
            "Environment"
            "Owner"
          ]
        }
      }
    },
1 Answer
0
profile pictureAWS
EXPERT
David
answered 8 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions