AWS IAM Role and Policies
IAM role and policies can be composed either via Visual Editor in AWS, or via plain JSON.
To follow the Least Privilege Principal, we can further restrict actions via Resource and Conditions.
To find the required Resource/Conditions for particular action, see:
https://iam.cloudonaut.io/reference/#/
For condition, you can use the service-specific string matching, such
"Condition": {
"StringEquals": {
"aws:ResourceTag/Department": "Test"
}
}
Top comments (0)