Skip to content

Commit 2bfc964

Browse files
RoRoJbene2k1nerda-codes
committed
Apply suggestions from code review
Co-authored-by: Benedikt Rollik <[email protected]> Co-authored-by: nerda-codes <[email protected]>
1 parent 8455443 commit 2bfc964

File tree

14 files changed

+16
-16
lines changed

14 files changed

+16
-16
lines changed

faq/messaging-and-queuing.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ The following subscriber types are supported:
3131

3232
For more details on supported and unsupported Topics and Events features, see our [dedicated page](/serverless/messaging/reference-content/sns-support/).
3333

34-
## Can I configure Scalewat NATS via Terraform?
34+
## Can I configure Scaleway NATS via Terraform?
3535

36-
Yes, check out our [tutorial](https://registry.terraform.io/providers/scaleway/scaleway/latest/docs/guides/mnq_with_nats_terraform_provider) on how to configure with the Terraform [NATS Jetstream provider](https://registry.terraform.io/providers/nats-io/jetstream/latest/docs).
36+
Yes, check out our [tutorial](https://registry.terraform.io/providers/scaleway/scaleway/latest/docs/guides/mnq_with_nats_terraform_provider) on how to configure Scaleway NATS with the Terraform [NATS Jetstream provider](https://registry.terraform.io/providers/nats-io/jetstream/latest/docs).
3737

3838
## How are NATS, Queues, and Topics and Events billed?
3939

4040
Billing is based on:
4141

4242
- For NATS: [Stream volume](/serverless/messaging/concepts/#stream-volume) (the total sum of each message's size going through the stream) and [stream persistence](/serverless/messaging/concepts/#stream-persistence) (the total amount of data stored * duration)
4343
- For Queues: [Queue volume](/serverless/messaging/concepts/#queue-volume) (the total sum of each message's size going through the queue)
44-
- For Topics and Events : [Topic Volume](/serverless/messaging/concepts/#queue-volume)(the total sum of each message's size going out from the topic to the subscriptions)
44+
- For Topics and Events: [Topic Volume](/serverless/messaging/concepts/#queue-volume)(the total sum of each message's size going out from the topic to the subscriptions)
4545

4646
For full pricing details, see our [dedicated pricing page](https://www.scaleway.com/en/pricing/).

managed-services/transactional-email/api-cli/use-webhooks-with-sns-topics.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories:
1515

1616
A webhook is an automated message sent in real-time from one system to another when a specific event happens, the message is typically conveyed using HTTP requests that are sent to an endpoint of your choice.
1717

18-
You can set up webhooks for Scaleway Transaction Email and subscribe them to [Topics and Events topics](/serverless/messaging/how-to/create-manage-topics/) to have real-time event alerts sent to your endpoints.
18+
You can set up webhooks for Scaleway Transactional Email and subscribe them to [Topics and Events topics](/serverless/messaging/how-to/create-manage-topics/) to have real-time event alerts sent to your endpoints.
1919

2020

2121
<Macro id="requirements" />

serverless/functions/reference-content/use-cases.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This example shows how to handle different HTTP methods (POST and GET) as well a
3838

3939
## Go - Queues Publish message
4040

41-
You can use this example to publish a message to an Scaleway queue using the MNQ namespace from the Scaleway Go SDK.
41+
You can use this example to publish a message to a Scaleway queue using the MNQ namespace from the Scaleway Go SDK.
4242

4343
[MNQ SQS Publish message using Golang](https://github.com/scaleway/serverless-examples/blob/main/functions/go-mnq-sqs-publish/README.md)
4444

serverless/messaging/api-cli/python-node-sqs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ sqs = boto3.resource('sqs',
118118
The `endpoint_url` for Scaleway Queues is `https://sqs.mnq.fr-par.scaleway.com`. For the access and secret key values, use the credentials you [generated](/serverless/messaging/how-to/create-credentials/) for Queues.
119119
</Message>
120120

121-
Once connected, you can use any functions available with the SDK - just check that they're [supported by Scaleway Queues](/serverless/messaging/reference-content/sqs-support/). See the [official documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/index.html) for more details, or read on to see some examples.
121+
Once connected, you can use any functions available with the SDK - just check that they are [supported by Scaleway Queues](/serverless/messaging/reference-content/sqs-support/). See the [official documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/index.html) for more details, or read on to see some examples.
122122

123123
### Create queue (Python)
124124

serverless/messaging/api-cli/sqs-sns-aws-cli.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ The AWS-CLI is an open-source tool built on top of the AWS SDK for Python (Boto)
174174
aws sns unsubscribe --subscription-arn $(jq -r .SubscriptionArn my-subscription.json)
175175
```
176176

177-
6. Use the following command to delete the Scaleway queue (if you had an Scaleway Queues target):
177+
6. Use the following command to delete the Scaleway queue (if you had a Scaleway Queues target):
178178

179179
```sh
180180
aws sqs delete-queue --queue-url $(jq -r .QueueUrl my-queue.json)

serverless/messaging/concepts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ A message broker is a piece of software that allows applications, systems and se
5151

5252
## Message retention period
5353

54-
The message retention period is a setting that can be configured for a queue. It represents the length of time (in seconds) that messages are kept in the queue before being deleted. Setting a longer message retention period allows for a longer interval between a message being sent and it being received. Read more in our dedicated documentation on [creating queues](/serverless/messaging/how-to/create-manage-queues/).
54+
The message retention period is a setting that can be configured for a queue. It represents the length of time (in seconds) that messages are kept in the queue before being deleted. Setting a longer message retention period allows for a longer interval between a message being sent and it being received. Read more in our dedicated documentation on [creating queues](/serverless/messaging/how-to/create-manage-queues/).
5555

5656
## Messaging and Queuing
5757

serverless/messaging/how-to/create-credentials.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Credentials for NATS accounts are not granular: they necessarily give full read
3636

3737
4. In the **Credentials** panel, click **Generate credentials**. A pop-up displays.
3838

39-
6. Enter a name for these credentials, and click **Generate credentials**.
39+
5. Enter a name for these credentials, and click **Generate credentials**.
4040

4141
The credentials are created and a button displays prompting you to download them in a `.creds` file.
4242

serverless/messaging/how-to/create-manage-queues.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ You can use the **Purge** feature to delete all messages from a queue.
8181

8282
A pop-up asks you to confirm that you understand this action will delete all your queued messages.
8383

84-
5. Type **PURGE** and click **Purge queue**.
84+
4. Type **PURGE** and click **Purge queue**.
8585

8686
## How to delete a queue
8787

serverless/messaging/how-to/create-manage-subscriptions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This page shows how to create and manage [subscriptions](/serverless/messaging/c
3232
4. Click **Create Subscription**. The subscription creation wizard displays.
3333
<Lightbox src="scaleway-topics-create-subs.webp" alt="In the Scaleway console, the Create a Subscription screen displays. The different sections of the screen are described in the steps below" />
3434

35-
5. Verify the parameters of the topic that you are creating a subscription for (name, type and).
35+
5. Verify the parameters of the topic that you are creating a subscription for (name, and type).
3636

3737
6. Choose a protocol, based on the type of endpoint or client you want to subscribe. Click the tab below for further details and full instructions on each protocol:
3838

serverless/messaging/how-to/manage-credentials.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Credentials for **Queues** and **Topics and Events** can be updated to change th
5555

5656
A pop-up displays, warning you that this action is irreversible and the key will no longer be able to access your service.
5757

58-
4. Click **Revoke credentials**.
58+
5. Click **Revoke credentials**.
5959

6060
The credentials are revoked and you are returned to the product's **Credentials** listing.
6161

0 commit comments

Comments
 (0)