{{ }} Substitute variables
Adjust the variable values according to your preference.
Policy Code
Referenced from: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_examples_ec2-start-stop-match-tags.html
1{
2 "Version": "2012-10-17",
3 "Statement": {
4 "Effect": "Allow",
5 "Action": [
6 "ec2:startInstances",
7 "ec2:stopInstances"
8 ],
9 "Resource": "*",
10 "Condition": {"StringEquals":
11 {"aws:ResourceTag/{{tagName}}":"${aws:PrincipalTag/{{tagName}}}"}}
12 }
13}
DOC
Replace {{tagName}} with the name of the tag you wish to match.