AWS eks documentation change
Summary
Updated placeholder syntax in S3 bucket commands and node diagnostic examples
Security assessment
Changes involve documentation formatting improvements and placeholder standardization. No security-related content was added or modified beyond general command syntax updates.
Diff
diff --git a/eks/latest/userguide/auto-get-logs.md b/eks/latest/userguide/auto-get-logs.md index f4804b986..d7cca8516 100644 --- a//eks/latest/userguide/auto-get-logs.md +++ b//eks/latest/userguide/auto-get-logs.md @@ -37 +37 @@ If you don’t already have an S3 bucket to store the logs, create one. Use the - aws s3api create-bucket --bucket bucket-name + aws s3api create-bucket --bucket <bucket-name> @@ -56,2 +56,2 @@ You must use the AWS API or a SDK to create the pre-signed S3 upload URL for EKS - Params={'Bucket': '<bucket-name>', 'Key': '<key>'}, - ExpiresIn=1000 + Params={'Bucket': '[.replaceable]`<bucket-name>`', 'Key': '[.replaceable]`<key>`'}, + ExpiresIn=[.replaceable]`1000` @@ -81 +81 @@ Create a `NodeDiagnostic` manifest that uses the name of the node as the resourc - name: node-name + name: <node-name> @@ -102 +102 @@ You can check on the Status of the collection by describing the `NodeDiagnostic` - kubectl describe nodediagnostics.eks.amazonaws.com/node-name + kubectl describe nodediagnostics.eks.amazonaws.com/<node-name> @@ -111 +111 @@ Wait approximately one minute before attempting to download the logs. Then, use - aws s3 cp s3://bucket-name/key ./node-logs.tar.gz + aws s3 cp s3://<bucket-name>/key ./<path-to-node-logs>.tar.gz @@ -122 +122 @@ Wait approximately one minute before attempting to download the logs. Then, use - kubectl delete nodediagnostics.eks.amazonaws.com/node-name + kubectl delete nodediagnostics.eks.amazonaws.com/<node-name>