From 2952bf326900662948cc894e194b190e6ec17a4a Mon Sep 17 00:00:00 2001 From: Samantha Coyle Date: Wed, 4 Dec 2024 14:59:17 -0600 Subject: [PATCH] fix: address feedback so far Signed-off-by: Samantha Coyle --- .../integrations/AWS/authenticating-aws.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/integrations/AWS/authenticating-aws.md b/daprdocs/content/en/developing-applications/integrations/AWS/authenticating-aws.md index 54f7df40b..7ae9c5b5d 100644 --- a/daprdocs/content/en/developing-applications/integrations/AWS/authenticating-aws.md +++ b/daprdocs/content/en/developing-applications/integrations/AWS/authenticating-aws.md @@ -8,10 +8,14 @@ aliases: - /developing-applications/integrations/authenticating/authenticating-aws/ --- -Dapr components leveraging AWS services (e.g., DynamoDB, SQS, S3) utilize standardized configuration attributes via the AWS SDK. [Learn more about how the AWS SDK handles credentials](https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials). +Dapr components leveraging AWS services (for example, DynamoDB, SQS, S3) utilize standardized configuration attributes via the AWS SDK. [Learn more about how the AWS SDK handles credentials](https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials). You can configure authentication using the AWS SDK’s default provider chain or one of the predefined AWS authentication profiles outlined below. Verify your component configuration by testing and inspecting Dapr runtime logs to confirm proper initialization. +### Terminology +- **ARN (Amazon Resource Name):** A unique identifier used to specify AWS resources. Format: arn:partition:service:region:account-id:resource. Example: arn:aws:iam::123456789012:role/example-role. +- **IAM (Identity and Access Management):** AWS's service for managing access to AWS resources securely. + ### Authentication Profiles #### 1. Access Key ID and Secret Access Key