AWS eks documentation change
Summary
Enhanced documentation for AsciiDoc syntax with attribute handling and code examples
Security assessment
Changes focus on documentation formatting and code example improvements. The ARN example update promotes consistent attribute usage but doesn't directly address security vulnerabilities
Diff
diff --git a/eks/latest/userguide/asciidoc-syntax.md b/eks/latest/userguide/asciidoc-syntax.md index a3daf553e..2142c8f5e 100644 --- a//eks/latest/userguide/asciidoc-syntax.md +++ b//eks/latest/userguide/asciidoc-syntax.md @@ -5 +5 @@ -New pageHeadingsText formattingListsLinksCode examplesImagesTablesCalloutsIncluding other filesAttributesProcedures +New pageHeadingsText formattingListsLinksCode examplesImagesTablesCalloutsIncluding other filesAttributes (similar to entities)Procedures @@ -83 +83 @@ Use backticks for inline code: -Create code blocks with syntax highlighting: +Create code blocks with syntax highlighting and support for attributes (similar to entities): @@ -86 +86 @@ Create code blocks with syntax highlighting: - [source,python] + [source,python,subs="verbatim,attributes"] @@ -142 +142 @@ Include content from other files: -## Attributes +## Attributes (similar to entities) @@ -144 +144 @@ Include content from other files: -Use predefined attributes to maintain consistency. In particular, you MUST use an attribute for ` AWS `. +Use predefined attributes to maintain consistency. In particular, you MUST use attributes for AWS and ` arn:aws: `. @@ -148,0 +149,8 @@ Use predefined attributes to maintain consistency. In particular, you MUST use a + + [source,bash,subs="verbatim,attributes"] + ---- + aws iam attach-role-policy \ + --role-name AmazonEKSAutoClusterRole \ + --policy-arn {arn-aws}iam::aws:policy/AmazonEKSClusterPolicy + ---- +