From e911df4477dce2fbbecab96dac07348e0f453ff8 Mon Sep 17 00:00:00 2001 From: Brunno Soares Date: Fri, 9 Aug 2024 20:27:00 -0300 Subject: [PATCH] Add AWS policies resource (#6386) * Update index.md * Update src/data/roadmaps/aws/content/103-iam/100-policies/index.md --------- Co-authored-by: Kamran Ahmed --- src/data/roadmaps/aws/content/103-iam/100-policies/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/aws/content/103-iam/100-policies/index.md b/src/data/roadmaps/aws/content/103-iam/100-policies/index.md index 5debe4698..25b007432 100644 --- a/src/data/roadmaps/aws/content/103-iam/100-policies/index.md +++ b/src/data/roadmaps/aws/content/103-iam/100-policies/index.md @@ -1,3 +1,7 @@ # Policies -Policies in Amazon IAM (Identity and Access Management) are documents that act as containers for permissions. They are expressed in JSON format in IAM and they define the actions, effects, resources, and optional conditions. There are two types of policies: identity-based policies and resource-based policies. Identity-based policies are attached to an IAM identity, and resource-based policies are attached to a resource. These policies specify what actions are allowed or denied on what resources, under what conditions. They are your primary tool in defining and managing permissions in AWS. \ No newline at end of file +Policies in Amazon IAM (Identity and Access Management) are documents that act as containers for permissions. They are expressed in JSON format in IAM and they define the actions, effects, resources, and optional conditions. There are two types of policies: identity-based policies and resource-based policies. Identity-based policies are attached to an IAM identity, and resource-based policies are attached to a resource. These policies specify what actions are allowed or denied on what resources, under what conditions. They are your primary tool in defining and managing permissions in AWS. + +Visit the following resources to learn more: + +- [@official@Permissions and Policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/introduction_access-management.html)