From 3483f185a8216799ea1bcb80e0c9acbba6760d7a Mon Sep 17 00:00:00 2001 From: x032205 Date: Thu, 24 Jul 2025 11:44:10 -0400 Subject: [PATCH] Doc tweaks --- .../abac/managing-machine-identity-attributes.mdx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/documentation/platform/access-controls/abac/managing-machine-identity-attributes.mdx b/docs/documentation/platform/access-controls/abac/managing-machine-identity-attributes.mdx index 17ad9d4b2..2f1aec551 100644 --- a/docs/documentation/platform/access-controls/abac/managing-machine-identity-attributes.mdx +++ b/docs/documentation/platform/access-controls/abac/managing-machine-identity-attributes.mdx @@ -74,16 +74,18 @@ For methods like OIDC, these come as claims in the token and can be made availab - For identities authenticated using AWS Auth, several attributes can be accessed: + For identities authenticated using AWS Auth, several attributes can be accessed. On top of the 3 base attributes, there's 4 derived from the ARN. The example below includes comments showing how each derived attribute looks like based on this ARN: `arn:aws:iam::123456789012:user/example-user` ``` {{ identity.auth.aws.accountId }} {{ identity.auth.aws.arn }} {{ identity.auth.aws.userId }} - {{ identity.auth.aws.partition }} - {{ identity.auth.aws.service }} - {{ identity.auth.aws.resourceType }} - {{ identity.auth.aws.resourceName }} + + // Derived from ARN + {{ identity.auth.aws.partition }} // aws + {{ identity.auth.aws.service }} // iam + {{ identity.auth.aws.resourceType }} // user + {{ identity.auth.aws.resourceName }} // example-user ```