Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/versioned/eventing/sinks/integration-sink/aws_s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Below is an `IntegrationSink` to send data to an Amazon S3 Bucket:
auth:
secret:
ref:
name: "my-secret"
name: "my-secret"
```

Inside of the `aws.s3` object we define the name of the bucket (or _arn_) and its region. The credentials for the AWS service are referenced from the `my-secret` Kubernetes `Secret`
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned/eventing/sinks/integration-sink/aws_sns.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Below is an `IntegrationSink` to send data to AWS SNS:
auth:
secret:
ref:
name: "my-secret"
name: "my-secret"
```
Inside of the `aws.sns` object we define the name of the topic (or _arn_) and its region. The credentials for the AWS service are referenced from the `my-secret` Kubernetes `Secret`

Expand Down
4 changes: 2 additions & 2 deletions docs/versioned/eventing/sinks/integration-sink/aws_sqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ Below is an `IntegrationSink` to send data to AWS SQS:
spec:
aws:
sqs:
arn: "arn:aws:s3:::my-queue"
arn: "my-queue"
region: "eu-north-1"
auth:
secret:
ref:
name: "my-secret"
name: "my-secret"
```
Inside of the `aws.sqs` object we define the name of the queue (or _arn_) and its region. The credentials for the AWS service are referenced from the `my-secret` Kubernetes `Secret`

Expand Down
Loading