Skip to content

Commit 2f72cfd

Browse files
authored
Fix for issue - AWS SQS binding spec - endpoint #4698 (#4718)
1 parent fe13a1a commit 2f72cfd

File tree

1 file changed

+8
-5
lines changed
  • daprdocs/content/en/reference/components-reference/supported-bindings

1 file changed

+8
-5
lines changed

daprdocs/content/en/reference/components-reference/supported-bindings/sqs.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ spec:
2626
value: "items"
2727
- name: region
2828
value: "us-west-2"
29+
- name: endpoint
30+
value: "sqs.us-west-2.amazonaws.com"
2931
- name: accessKey
3032
value: "*****************"
3133
- name: secretKey
@@ -45,11 +47,12 @@ The above example uses secrets as plain strings. It is recommended to use a secr
4547
| Field | Required | Binding support | Details | Example |
4648
|--------------------|:--------:|------------|-----|---------|
4749
| `queueName` | Y | Input/Output | The SQS queue name | `"myqueue"` |
48-
| `region` | Y | Input/Output | The specific AWS region | `"us-east-1"` |
49-
| `accessKey` | Y | Input/Output | The AWS Access Key to access this resource | `"key"` |
50-
| `secretKey` | Y | Input/Output | The AWS Secret Access Key to access this resource | `"secretAccessKey"` |
51-
| `sessionToken` | N | Input/Output | The AWS session token to use | `"sessionToken"` |
52-
| `direction` | N | Input/Output | The direction of the binding | `"input"`, `"output"`, `"input, output"` |
50+
| `region` | Y | Input/Output | The specific AWS region | `"us-east-1"` |
51+
| `endpoint` | N | Output | The specific AWS endpoint | `"sqs.us-east-1.amazonaws.com"` |
52+
| `accessKey` | Y | Input/Output | The AWS Access Key to access this resource | `"key"` |
53+
| `secretKey` | Y | Input/Output | The AWS Secret Access Key to access this resource | `"secretAccessKey"` |
54+
| `sessionToken` | N | Input/Output | The AWS session token to use | `"sessionToken"` |
55+
| `direction` | N | Input/Output | The direction of the binding | `"input"`, `"output"`, `"input, output"` |
5356

5457
{{% alert title="Important" color="warning" %}}
5558
When running the Dapr sidecar (daprd) with your application on EKS (AWS Kubernetes), if you're using a node/pod that has already been attached to an IAM policy defining access to AWS resources, you **must not** provide AWS access-key, secret-key, and tokens in the definition of the component spec you're using.

0 commit comments

Comments
 (0)